Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Remove unused import | Jason R. Coombs | 2016-04-20 | 1 | -5/+0 | |
| | ||||||
* | Use OrderedDict to retain deterministic ordering of version info in egg_info ↵ | Jason R. Coombs | 2016-04-20 | 3 | -14/+18 | |
| | | | | command. Remove lexicographic ordering in setopt.edit_config. Ref #553 | |||||
* | Preserve order of egg_info section in setup.cfg | Davanum Srinivas | 2016-04-19 | 2 | -2/+67 | |
| | | | | | | | | | | | | egg_info is the dictionary with information that is injected into setup.cfg. edit_config uses RawConfigParser which uses collections.OrderedDict for all the data. When we use a simple dict(), when we loop through items in edit_config, we see random behavior as a result the fields tag_svn_revision/tag_date/tag_build are added to the setup.cfg randomly. So if we sort the items by key when we traverse items we will get deterministic output as RawConfigParser uses OrderedDict internally by default. | |||||
* | Limit deploys to Python 3.5 and only the standard run. Ref #549. | Jason R. Coombs | 2016-04-16 | 1 | -1/+2 | |
| | ||||||
* | Added tag v20.9.0 for changeset 8bf8aaa139bb | Jason R. Coombs | 2016-04-16 | 1 | -0/+1 | |
| | ||||||
* | Bump version: 20.8.1 → 20.9.0v20.9.0 | Jason R. Coombs | 2016-04-16 | 2 | -2/+2 | |
| | ||||||
* | update changelog | Jason R. Coombs | 2016-04-16 | 1 | -0/+7 | |
| | ||||||
* | Merge pull request #548 from mindw/bump_certifi_version | Jason R. Coombs | 2016-04-16 | 1 | -2/+2 | |
|\ | | | | | bump certifi to 2016.2.28 | |||||
| * | bump certifi to 2016.2.28 | Gabi Davar | 2016-04-16 | 1 | -2/+2 | |
| | | | | | | | | Signed-off-by: Gabi Davar <grizzly.nyo@gmail.com> | |||||
* | | Merge pull request #545 from totoroliu/master | Jason R. Coombs | 2016-04-16 | 1 | -1/+5 | |
|\ \ | | | | | | | Handle not-zip-safe egg (folder) deletion in rotate command | |||||
| * | | Handle not-zip-safe egg (folder) deletion in rotate command | Rick Liu | 2016-04-15 | 1 | -1/+5 | |
| |/ | ||||||
* | | Merge pull request #547 from mindw/rm_markerlib_manifest | Jason R. Coombs | 2016-04-16 | 1 | -1/+0 | |
|\ \ | |/ |/| | remove _markerlib from manifest | |||||
| * | remove _markerlib from manifest | Gabi Davar | 2016-04-16 | 1 | -1/+0 | |
|/ | | | | Signed-off-by: Gabi Davar <grizzly.nyo@gmail.com> | |||||
* | Added tag v20.8.1 for changeset 8cf9340669ae | Jason R. Coombs | 2016-04-15 | 1 | -0/+1 | |
| | ||||||
* | Bump version: 20.8.0 → 20.8.1v20.8.1 | Jason R. Coombs | 2016-04-15 | 2 | -2/+2 | |
| | ||||||
* | Always inject extra into the environment when evaluating markers. Fixes #544. | Jason R. Coombs | 2016-04-15 | 3 | -11/+9 | |
| | ||||||
* | Added tag v20.8.0 for changeset 7f56b6f40de3 | Jason R. Coombs | 2016-04-15 | 1 | -0/+1 | |
| | ||||||
* | Bump version: 20.7.0 → 20.8.0v20.8.0 | Jason R. Coombs | 2016-04-15 | 2 | -2/+2 | |
| | ||||||
* | Update changelog. Fixes #543. | Jason R. Coombs | 2016-04-15 | 1 | -0/+7 | |
| | ||||||
* | Merge pull request #542 from ncoghlan/patch-1 | Jason R. Coombs | 2016-04-11 | 1 | -1/+2 | |
|\ | | | | | Update rationale for the zip_safe flag | |||||
| * | Update rationale for the zip_safe flag | ncoghlan | 2016-04-12 | 1 | -1/+2 | |
|/ | | | | | | | Importing from a zip file no longer significantly reduces the number of stat calls during import, and may even slow imports down if too many archives are added to sys.path. The outdated rationale was noted by Thomas Güttler on distutils-sig | |||||
* | Merge pull request #541 from alex/patch-1 | Jason R. Coombs | 2016-04-11 | 1 | -18/+18 | |
|\ | | | | | Swap out hard tabs for spaces | |||||
| * | Swap out hard tabs for spaces | Alex Gaynor | 2016-04-10 | 1 | -18/+18 | |
|/ | ||||||
* | Added tag v20.7.0 for changeset 0262ab29fc24 | Jason R. Coombs | 2016-04-10 | 1 | -0/+1 | |
| | ||||||
* | Bump version: 20.6.7 → 20.7.0v20.7.0 | Jason R. Coombs | 2016-04-10 | 2 | -2/+2 | |
| | ||||||
* | Instead of reasing a new exception, just augment the existing exception, ↵ | Jason R. Coombs | 2016-04-07 | 1 | -2/+5 | |
| | | | | avoiding any concerns about exception type, but still communicating the context necessary to trace the issue. Ref #537. | |||||
* | Update changelog | Jason R. Coombs | 2016-04-07 | 1 | -2/+7 | |
| | ||||||
* | Trap additional exceptions. Fixes #536. | Jason R. Coombs | 2016-04-07 | 2 | -1/+8 | |
| | ||||||
* | Merge pull request #537 from ri0t/patch-1 | Jason R. Coombs | 2016-04-07 | 1 | -1/+4 | |
|\ | | | | | This helps finding packages with bad utf | |||||
| * | This helps finding packages with bad utf | riot | 2016-04-07 | 1 | -1/+4 | |
| | | | | | | Checking hundreds of possibly installed packages manually should NOT be expected of the user ;) | |||||
* | | Merge pull request #533 from s-t-e-v-e-n-k/compare-ep-attributes | Jason R. Coombs | 2016-04-07 | 1 | -1/+4 | |
|\ \ | | | | | | | Stop comparing repr()'s in TestEntryPoint | |||||
| * | | Stop comparing repr()'s in TestEntryPoint | Steve Kowalik | 2016-04-06 | 1 | -1/+4 | |
| |/ | | | | | | | | | | | | | | | | | In Python 3, the default order of iterables can not determined, so comparing the repr of objects that include tuples is not static like it is under Python 2. Compare the attributes of EntryPoint instead, making sure to sort .attrs and .extras. Closes: #526 | |||||
* | | Rely on short-circuit in 'or' rather than building a separate iterable. | Jason R. Coombs | 2016-04-07 | 1 | -8/+1 | |
| | | ||||||
* | | Adjust expectation that 'extra' is not in the marker evaluation if no extras ↵ | Jason R. Coombs | 2016-04-07 | 2 | -13/+17 | |
| | | | | | | | | demanded the requirement. | |||||
* | | Extract _ReqExtras to encapsulate that functionality and decouple it from ↵ | Jason R. Coombs | 2016-04-07 | 2 | -28/+48 | |
| | | | | | | | | WorkingSet. | |||||
* | | Merge pull request #532 from s-t-e-v-e-n-k/readd-exception-for-marker-eval | Jason R. Coombs | 2016-04-07 | 2 | -1/+7 | |
|\ \ | |/ |/| | Reinstate the or guard in WorkingSet._markers_pass | |||||
| * | Reinstate the or guard in WorkingSet._markers_pass | Steve Kowalik | 2016-04-06 | 2 | -1/+7 | |
|/ | ||||||
* | Remove fallback value until there's something that explains or requires it. | Jason R. Coombs | 2016-04-05 | 1 | -1/+1 | |
| | ||||||
* | Extract method for testing marker evaluation | Jason R. Coombs | 2016-04-05 | 1 | -11/+24 | |
| | ||||||
* | Added tag v20.6.8 for changeset a00910db03ec | Jason R. Coombs | 2016-04-05 | 1 | -0/+1 | |
| | ||||||
* | Update changelog | Jason R. Coombs | 2016-04-05 | 1 | -0/+6 | |
| | ||||||
* | Merge pull request #530 from s-t-e-v-e-n-k/fix-extra-markers-requires | Jason R. Coombs | 2016-04-05 | 3 | -11/+85 | |
|\ | | | | | Restore evaluating environment markers in WorkingSet | |||||
| * | Restore evaluating environment markers in WorkingSet | Steve Kowalik | 2016-04-05 | 3 | -11/+85 | |
|/ | | | | | | | | | | Correctly deal with parsed requirements that include extras as a marker inside WorkingSet that are populated from METADATA inside wheels, like we get from pip>=7. This partially reverts commit 04d10ff025e1cbef7ec93a2008c930e856045c8a. Closes: #523 | |||||
* | Merge | Jason R. Coombs | 2016-04-01 | 3 | -2/+3 | |
|\ | ||||||
| * | Added tag v20.6.7 for changeset 0804d30b6ead | Jason R. Coombs | 2016-03-31 | 1 | -0/+1 | |
| | | ||||||
| * | Bump version: 20.6.6 → 20.6.7v20.6.7 | Jason R. Coombs | 2016-03-31 | 2 | -2/+2 | |
| | | ||||||
* | | Rename CHANGES and README files for nicer rendering on Github. | Jason R. Coombs | 2016-04-01 | 8 | -6/+4 | |
| | | ||||||
* | | Merge pull request #528 from s-t-e-v-e-n-k/drop-safe-repr | Jason R. Coombs | 2016-04-01 | 1 | -11/+0 | |
|\ \ | |/ |/| | Drop unused safe_repr function | |||||
| * | Drop unused safe_repr function | Steve Kowalik | 2016-04-01 | 1 | -11/+0 | |
|/ | | | | | When _assertIn was removed from test_resources, the safe_repr function was not dropped, leaving it with no callers, so drop it. | |||||
* | Bypass environment marker evaluation in requirements resolution. Ref #523. | Jason R. Coombs | 2016-03-31 | 4 | -2/+14 | |
| |