-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Use PEP 440 prerelease tags #866
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
avoids mismatch between wheel/sdist upload on PyPI due to setuptools normalization of prerelease tags.
test directly in the version number file, as the version number is likely to be committed before running tests, so we want **really quick failure**.
notebook/_version.py
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
version_info should be (4, 1, 0, 'b1')
I took care of a few of the lasts comments. |
notebook/_version.py
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from this line down can be removed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops. I took care of it too.
One more note about lingering unused code in |
Thanks for your patience ! |
Thanks! |
Fusion between #860 & #862. Test the version number correctness in unit test, normalize it when exec setup.py
closes #842