| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | ensure py_version and platform are str in hashcmp | MinRK | 2015-02-05 | 1 | -2/+2 |
| | | | | | avoids unorderable None, str when sorting dists on Python 3 | ||||
| * | Add __ne__ method to Requirement class | Marc Abramowitz | 2015-03-06 | 1 | -0/+3 |
| | | | | | | | It seems like if it has an `__eq__` method, it should probably have a `__ne__` method. I ran into this while working on pip -- see https://github.com/pypa/pip/pull/2493#discussion_r25955295 | ||||
| * | Update warning to clarify when and how the instance should be use directly ↵ | Jason R. Coombs | 2015-01-29 | 1 | -2/+4 |
| | | | | | or what to do otherwise. | ||||
| * | Use pytest.raises for brevity and clarity of purpose. | Jason R. Coombs | 2015-01-06 | 1 | -3/+2 |
| | | |||||
| * | Use pytests parametrize to create separate tests for each spec | Jason R. Coombs | 2015-01-06 | 1 | -6/+6 |
| | | |||||
| * | Refactor for clarity | Jason R. Coombs | 2015-01-06 | 1 | -3/+2 |
| | | |||||
| * | Equal signs are now allowed in entry point names. | Jason R. Coombs | 2015-01-06 | 1 | -1/+1 |
| | | |||||
| * | Restore support for printable characters in the entry point name. Fixes #327. | Jason R. Coombs | 2015-01-06 | 2 | -1/+12 |
| | | |||||
| * | Add EntryPoint.resolve and deprecate most usage of EntryPoint.load. Removed ↵11.3 | Jason R. Coombs | 2015-01-05 | 1 | -8/+14 |
| | | | | | EntryPoint._load. | ||||
| * | Merge deprecation warning fix | Jason R. Coombs | 2015-01-05 | 1 | -0/+1 |
| |\ | |||||
| | * | Bump stacklevel to 2 to inform the caller of the issue. | Jason R. Coombs | 2015-01-05 | 1 | -0/+1 |
| | | | |||||
| * | | Fix test failure on Python 2 | Jason R. Coombs | 2015-01-04 | 1 | -0/+2 |
| | | | |||||
| * | | Add test capturing expectation when dependencies conflict during resolve. ↵ | Jason R. Coombs | 2015-01-04 | 1 | -0/+25 |
| | | | | | | | | | Fixes #281 | ||||
| * | | Normalize whitespace | Jason R. Coombs | 2015-01-04 | 1 | -4/+6 |
| | | | |||||
| * | | Only raise a ContextualVersionConflict when dependent requirements are present. | Jason R. Coombs | 2015-01-04 | 1 | -1/+11 |
| | | | |||||
| * | | No need to mutate the set to a list; just use the set. | Jason R. Coombs | 2015-01-04 | 1 | -2/+2 |
| | | | |||||
| * | | Split out ContextualVersionConflict | Jason R. Coombs | 2015-01-04 | 1 | -11/+18 |
| | | | |||||
| * | | Test the report method | Jason R. Coombs | 2015-01-04 | 2 | -7/+32 |
| | | | |||||
| * | | Add test for WorkingSet.find() when a conflict occurs. | Jason R. Coombs | 2015-01-04 | 1 | -0/+16 |
| | | | |||||
| * | | Remove unreachable branch | Jason R. Coombs | 2015-01-04 | 1 | -2/+1 |
| | | | |||||
| * | | Add another assertion on the exception. | Jason R. Coombs | 2015-01-04 | 1 | -1/+4 |
| | | | |||||
| * | | Extract variable | Jason R. Coombs | 2015-01-04 | 1 | -4/+2 |
| | | | |||||
| * | | Remove try/except/fail - Exceptions are failures by default. | Jason R. Coombs | 2015-01-04 | 1 | -4/+2 |
| | | | |||||
| * | | And again in doctest | Jason R. Coombs | 2015-01-04 | 1 | -2/+1 |
| | | | |||||
| * | | Use except/as, now supported by Python 2.6 | Jason R. Coombs | 2015-01-04 | 1 | -6/+4 |
| | | | |||||
| * | | Moved test_resources and test_pkg_resources to pkg_resources package. | Jason R. Coombs | 2015-01-03 | 3 | -0/+719 |
| | | | |||||
| * | | Remove remaining reference to setuptools from test_resources | Jason R. Coombs | 2015-01-03 | 1 | -0/+2 |
| | | | |||||
| * | | Upgrade packaging lib to 15.0 | Donald Stufft | 2015-01-02 | 4 | -12/+75 |
| | | | |||||
| * | | Fix regression in entry-point name parsing | Ian Cordasco | 2015-01-02 | 1 | -1/+1 |
| |/ | | | | See #323 for more details. | ||||
| * | Officially deprecated EntryPoint.load(require=False). | Jason R. Coombs | 2014-12-31 | 1 | -0/+6 |
| | | |||||
| * | Don't allow imports relative to the pkg_resources module. | Jason R. Coombs | 2014-12-31 | 1 | -2/+1 |
| | | |||||
| * | Extract _load method which is the same as calling .load(False). | Jason R. Coombs | 2014-12-31 | 1 | -0/+3 |
| | | |||||
| * | Rename variable for clarity | Jason R. Coombs | 2014-12-31 | 1 | -2/+2 |
| | | |||||
| * | Return value directly | Jason R. Coombs | 2014-12-31 | 1 | -2/+1 |
| | | |||||
| * | Use reduce to retrieve attributes. Reuse error from AttributeError when ↵ | Jason R. Coombs | 2014-12-31 | 1 | -5/+4 |
| | | | | | translating to ImportError. | ||||
| * | Correct implementation fixing failing tests | Jason R. Coombs | 2014-12-31 | 1 | -2/+3 |
| | | |||||
| * | Extract pattern and entry point parsing from EntryPoint.parse. | Jason R. Coombs | 2014-12-31 | 1 | -16/+23 |
| | | |||||
| * | Remove unnecessary branch | Jason R. Coombs | 2014-12-31 | 1 | -2/+1 |
| | | |||||
| * | Prefer vendored packaging. | Jason R. Coombs | 2014-12-29 | 1 | -4/+5 |
| | | |||||
| * | Update API docs to reflect relocation of pkg_resources from module to package. | Jason R. Coombs | 2014-12-25 | 1 | -1/+1 |
| | | |||||
| * | Move api_tests to pkg_resources package. Fixes #312. | Jason R. Coombs | 2014-12-25 | 1 | -0/+420 |
| | | |||||
| * | Setuptools now uses the 'packaging' package from pkg_resources, unifying the ↵ | Jason R. Coombs | 2014-12-24 | 1 | -3/+8 |
| | | | | | behavior around resolution of that package. | ||||
| * | Move vendored packaging module into pkg_resources._vendor, restoring ↵ | Jason R. Coombs | 2014-12-24 | 9 | -3/+1287 |
| | | | | | independence of pkg_resources from setuptools. Fixes #311. | ||||
| * | Moved pkg_resources into its own package. | Jason R. Coombs | 2014-12-24 | 1 | -0/+2966 |
