Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign upBuilding results in version 0.0.0 #161
Comments
ecederstrand
added a commit
to ecederstrand/pdoc
that referenced
this issue
Aug 15, 2018
This comment has been minimized.
This comment has been minimized.
|
Hi @cortesi Could you kindly have a look at this and my other issues and pull requests? I'll happily work to get them in a committable state if you have any comments. |
ecederstrand
pushed a commit
to ecederstrand/pdoc
that referenced
this issue
Sep 7, 2018
mhils
closed this
in
9649963
Sep 7, 2018
mhils
added a commit
that referenced
this issue
Sep 7, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ecederstrand commentedAug 15, 2018
•
edited
I ran
python3 setup.py sdiston the latest source and got a resultingdist/pdoc-0.0.0.tar.gzfile.This is because
setup.pylooks for__version__inpdoc/__init__but it's actually located inpdoc/doc.py.setup.pyshould look inpdoc/doc.pyinstead, andpdoc/__init__.pyshould contain afrom .doc import __version__soimport pdoc; pdoc.__version__works as expected.