forked from pantsbuild/pants
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version numbering and clarify notes updates
pip resolves x.y.z-rc0 and x.y.z-pre0 to the same version number which caused problems for people installing pants with pip. The dev suffix does not conflict with rc in PEP440. The version numbering has been verified to not cause conflicts with a small test package and the following: In [1]: from pip._vendor.packaging import version In [2]: version.parse('1.1.0dev0') Out[2]: <Version('1.1.0.dev0')> In [3]: version.parse('1.1.0rc0') Out[3]: <Version('1.1.0rc0')> In [4]: version.parse('1.1.0') Out[4]: <Version('1.1.0’)> * Change pre to dev to avoid naming issues with PEP. * Clarify notes that need to be updated on cutting a new stable branch. Testing Done: CI pending: https://travis-ci.org/pantsbuild/pants/builds/144253603 Bugs closed: 3658 Reviewed at https://rbcommons.com/s/twitter/r/4069/
- Loading branch information
1 parent
c456902
commit 8a77c87
Showing
2 changed files
with
24 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters