summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump version: 28.2.0 → 28.3.0v28.3.0Jason R. Coombs2016-10-072-2/+2
|
* Merge suppression of namespace handling when PEP-420 can handle namespace ↵Jason R. Coombs2016-10-074-3/+7
|\ | | | | | | packages.
| * Bump version: 28.1.0 → 28.2.0v28.2.0b1Jason R. Coombs2016-10-022-2/+2
| |
| * Merge with masterJason R. Coombs2016-10-022-6/+12
| |\
| * | Bump version: 28.0.0 → 28.1.0v28.1.0b1Jason R. Coombs2016-10-012-2/+2
| | |
| * | Disable nspkg.pth behavior on Python 3.3+. Fixes #805 and fixes pypa/pip#1924.Jason R. Coombs2016-10-012-1/+8
| | |
* | | Update changelogJason R. Coombs2016-10-071-0/+6
| | |
* | | Merge pull request #809 from timheap/faster-package-finder-fixJason R. Coombs2016-10-072-8/+12
|\ \ \ | |_|/ |/| | Find nested packages with excluded parent
| * | Find nested packages with excluded parentTim Heap2016-10-052-8/+12
|/ / | | | | | | | | | | | | `find_packages(exclude=['pkg'])` should still find and include the `pkg.subpkg` package. Fixes #808
* | Pin to Pytest 3.0.2 as it appears 3.0.3 re-introduces pytest-dev/pytest#1888.v28.1.0Jason R. Coombs2016-10-011-1/+2
| |
* | Bump version: 28.0.0 → 28.1.0Jason R. Coombs2016-10-012-2/+2
| |
* | Merge pull request #803.Jason R. Coombs2016-10-012-2/+7
|\ \
| * | certifi-2016.9.26Gabi Davar2016-09-302-2/+7
| |/
* | Merge pull request #804 from stepshal/misspellingsJason R. Coombs2016-10-011-2/+2
|\ \ | |/ |/| Fix misspellings in changelog.
| * Fix misspellings in changelog.stepshal2016-10-011-2/+2
| |
* | Bump version: 27.3.1 → 28.0.0v28.0.0Jason R. Coombs2016-09-272-2/+2
|/
* Put main logic in the top-level body of the function.Jason R. Coombs2016-09-271-6/+7
|
* Merge fix for issue #719.Jason R. Coombs2016-09-272-8/+16
|\
| * Add changelog entry. Ref #719.Jason R. Coombs2016-09-271-0/+3
| |
| * Restore Python 2 compatibility. Ref #719.Jason R. Coombs2016-08-051-1/+2
| |
| * Forget the environment variable, and just log a warning when a metadata ↵Jason R. Coombs2016-08-051-10/+12
| | | | | | | | can't be decoded. Ref #719.
| * Allow an environment to suppress errors when reading metadata by setting ↵Jason R. Coombs2016-08-041-1/+3
| | | | | | | | PKG_RESOURCES_METADATA_ERRORS='replace'. Ref #719.
* | Remove Mercurial metadataJason R. Coombs2016-09-272-323/+0
| |
* | Define version in changelogJason R. Coombs2016-09-271-2/+2
| |
* | Merge pull request #798 from timheap/faster-package-finderJason R. Coombs2016-09-272-0/+13
|\ \ | | | | | | Note find_packages backwards incompatible change
| * | Note find_packages backwards incompatible changeTim Heap2016-09-262-0/+13
| | | | | | | | | | | | Also add a test for the new behaviour.
* | | Merge with v27.3.1Jason R. Coombs2016-09-274-28/+49
|\ \ \
| * | | Bump version: 27.3.0 → 27.3.1v27.3.1Jason R. Coombs2016-09-272-2/+2
| | | |
| * | | Patch MSVC functions by name. Fixes #790.Jason R. Coombs2016-09-272-26/+47
| | | |
* | | | Update changelogJason R. Coombs2016-09-271-0/+2
| | | |
* | | | certifi 2016.8.31 (#797)Gabi Davar2016-09-241-2/+2
| | | |
* | | | Merge pull request #733 from timheap/faster-package-finderJason R. Coombs2016-09-212-48/+40
|\ \ \ \ | |/ / / |/| / / | |/ / Do not search excluded directories for packages
| * | Update changelogTim Heap2016-09-221-0/+5
| | |
| * | Do not search excluded directories for packagesTim Heap2016-09-221-48/+35
|/ / | | | | | | | | | | | | | | | | | | Previously, PackageFinder.find would search the whole directory tree looking for packages, then remove excluded packages from this list. This made building a package very slow under some circumstances where the file tree was large. This change stops PackageFinder.find from descending in to directories that will never be included.
* | Bump version: 27.2.0 → 27.3.0v27.3.0Jason R. Coombs2016-09-202-2/+2
| |
* | Update changelogJason R. Coombs2016-09-201-0/+2
| |
* | Even better, use a static methodJason R. Coombs2016-09-181-3/+3
| |
* | Extract test.install_dists and distill it with a variable extraction and ↵Jason R. Coombs2016-09-182-12/+14
| | | | | | | | fallback variables.
* | Merge pull request #796 from stepshal/whitespaceJason R. Coombs2016-09-171-1/+1
|\ \ | | | | | | Add missing whitespace.
| * | Add missing whitespace.stepshal2016-09-181-1/+1
| | |
* | | Merge pull request #795 from stepshal/pyparsingJason R. Coombs2016-09-172-29/+131
|\ \ \ | | | | | | | | Upgrade pyparsing to version 2.1.9
| * | | Upgrade pyparsing to version 2.1.9stepshal2016-09-182-29/+131
| |/ /
* | | In test command, add installed eggs to PYTHONPATH when invoking tests so ↵Jason R. Coombs2016-09-173-9/+56
|/ / | | | | | | that subprocesses will also have the dependencies available. Fixes #794.
* | Merge pull request #772 from leorochael/pytest-ignore-all-dot-directoriesJason R. Coombs2016-09-161-1/+1
|\ \ | | | | | | pytest: ignore all .* directories
| * | pytest: ignore all .* directoriesLeonardo Rochael Almeida2016-09-081-1/+1
| | | | | | | | | In Cloud9 a .c9 directory is created. Other IDEs like to add .directories as well
* | | Merge pull request #786 from s-t-e-v-e-n-k/no-parse-requirement-arg-duplicationJason R. Coombs2016-09-142-18/+13
|\ \ \ | | | | | | | | Don't duplicate error case in package_index
| * | | Don't duplicate error case in package_indexSteve Kowalik2016-09-132-18/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | easy_install has code to handle parsing a requirement, catching the ValueError and then raising a DistUtilsError. This code was entirely duplicated in package_index, so I've slightly refactored to remove the duplication.
* | | | Bump version: 27.1.2 → 27.2.0v27.2.0Jason R. Coombs2016-09-142-2/+2
| | | |
* | | | Suppress ValueError in fixup_namespace_packages. Fixes #520. Fixes #513.Jason R. Coombs2016-09-142-1/+13
|/ / /
* | | Merge pull request #766 from benoit-pierre/fix_easy_install_doc_linksJason R. Coombs2016-09-091-3/+4
|\ \ \ | | | | | | | | easy_install: update links to documentation