aboutsummaryrefslogtreecommitdiffstats
path: root/pkg_resources/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Update warning to clarify when and how the instance should be use directly ↵Jason R. Coombs2015-01-291-2/+4
| | | | or what to do otherwise.
* Restore support for printable characters in the entry point name. Fixes #327.Jason R. Coombs2015-01-061-1/+1
|
* Add EntryPoint.resolve and deprecate most usage of EntryPoint.load. Removed ↵11.3Jason R. Coombs2015-01-051-8/+14
| | | | EntryPoint._load.
* Merge deprecation warning fixJason R. Coombs2015-01-051-0/+1
|\
| * Bump stacklevel to 2 to inform the caller of the issue.Jason R. Coombs2015-01-051-0/+1
| |
* | Only raise a ContextualVersionConflict when dependent requirements are present.Jason R. Coombs2015-01-041-1/+11
| |
* | No need to mutate the set to a list; just use the set.Jason R. Coombs2015-01-041-2/+2
| |
* | Split out ContextualVersionConflictJason R. Coombs2015-01-041-11/+18
| |
* | Test the report methodJason R. Coombs2015-01-041-4/+29
| |
* | Remove unreachable branchJason R. Coombs2015-01-041-2/+1
| |
* | Use except/as, now supported by Python 2.6Jason R. Coombs2015-01-041-6/+4
| |
* | Remove remaining reference to setuptools from test_resourcesJason R. Coombs2015-01-031-0/+2
| |
* | Fix regression in entry-point name parsingIan Cordasco2015-01-021-1/+1
|/ | | | See #323 for more details.
* Officially deprecated EntryPoint.load(require=False).Jason R. Coombs2014-12-311-0/+6
|
* Don't allow imports relative to the pkg_resources module.Jason R. Coombs2014-12-311-2/+1
|
* Extract _load method which is the same as calling .load(False).Jason R. Coombs2014-12-311-0/+3
|
* Rename variable for clarityJason R. Coombs2014-12-311-2/+2
|
* Return value directlyJason R. Coombs2014-12-311-2/+1
|
* Use reduce to retrieve attributes. Reuse error from AttributeError when ↵Jason R. Coombs2014-12-311-5/+4
| | | | translating to ImportError.
* Correct implementation fixing failing testsJason R. Coombs2014-12-311-2/+3
|
* Extract pattern and entry point parsing from EntryPoint.parse.Jason R. Coombs2014-12-311-16/+23
|
* Remove unnecessary branchJason R. Coombs2014-12-311-2/+1
|
* Prefer vendored packaging.Jason R. Coombs2014-12-291-4/+5
|
* Setuptools now uses the 'packaging' package from pkg_resources, unifying the ↵Jason R. Coombs2014-12-241-3/+8
| | | | behavior around resolution of that package.
* Move vendored packaging module into pkg_resources._vendor, restoring ↵Jason R. Coombs2014-12-241-3/+3
| | | | independence of pkg_resources from setuptools. Fixes #311.
* Moved pkg_resources into its own package.Jason R. Coombs2014-12-241-0/+2966