Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge with mastersetuptools-scm | Jason R. Coombs | 2016-09-27 | 54 | -688/+2942 |
|\ | |||||
| * | Merge pull request #798 from timheap/faster-package-finder | Jason R. Coombs | 2016-09-27 | 1 | -0/+9 |
| |\ | | | | | | | Note find_packages backwards incompatible change | ||||
| | * | Note find_packages backwards incompatible change | Tim Heap | 2016-09-26 | 1 | -0/+9 |
| | | | | | | | | | | | | Also add a test for the new behaviour. | ||||
| * | | Merge with v27.3.1 | Jason R. Coombs | 2016-09-27 | 1 | -26/+38 |
| |\ \ | | |/ | |/| | |||||
| | * | Patch MSVC functions by name. Fixes #790. | Jason R. Coombs | 2016-09-27 | 1 | -26/+38 |
| | | | |||||
| * | | Do not search excluded directories for packages | Tim Heap | 2016-09-22 | 1 | -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. | ||||
| * | Even better, use a static method | Jason R. Coombs | 2016-09-18 | 1 | -3/+3 |
| | | |||||
| * | Extract test.install_dists and distill it with a variable extraction and ↵ | Jason R. Coombs | 2016-09-18 | 1 | -11/+12 |
| | | | | | | | | fallback variables. | ||||
| * | Merge pull request #796 from stepshal/whitespace | Jason R. Coombs | 2016-09-17 | 1 | -1/+1 |
| |\ | | | | | | | Add missing whitespace. | ||||
| | * | Add missing whitespace. | stepshal | 2016-09-18 | 1 | -1/+1 |
| | | | |||||
| * | | In test command, add installed eggs to PYTHONPATH when invoking tests so ↵ | Jason R. Coombs | 2016-09-17 | 2 | -9/+49 |
| |/ | | | | | | | that subprocesses will also have the dependencies available. Fixes #794. | ||||
| * | Don't duplicate error case in package_index | Steve Kowalik | 2016-09-13 | 2 | -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. | ||||
| * | Merge pull request #766 from benoit-pierre/fix_easy_install_doc_links | Jason R. Coombs | 2016-09-09 | 1 | -3/+4 |
| |\ | | | | | | | easy_install: update links to documentation | ||||
| | * | easy_install: update links to documentation | Benoit Pierre | 2016-08-29 | 1 | -3/+4 |
| | | | |||||
| * | | Account for the class might be old style on Python 2. | Jason R. Coombs | 2016-09-09 | 1 | -1/+2 |
| | | | |||||
| * | | Extract a variable for nicer indentation. | Jason R. Coombs | 2016-09-09 | 1 | -3/+2 |
| | | | |||||
| * | | Allow get_unpatched to be called to get unpatched version of a class or ↵ | Jason R. Coombs | 2016-09-09 | 2 | -7/+17 |
| | | | | | | | | | | | | function, further harmonizing the interfaces. | ||||
| * | | Use programmatic import and add comment explaining purpose. | Jason R. Coombs | 2016-09-09 | 1 | -1/+2 |
| | | | |||||
| * | | Consolidate function patching and resolution of unpatched function, aligning ↵ | Jason R. Coombs | 2016-09-09 | 3 | -18/+32 |
| | | | | | | | | | | | | pattern with the patched classes. | ||||
| * | | Move msvc import to avoid a circular import | Donald Stufft | 2016-09-09 | 1 | -1/+2 |
| | | | |||||
| * | | Fix msvc monkeypatching, revealed by Appveyor tests. Fixes #778. | Jason R. Coombs | 2016-09-09 | 1 | -4/+5 |
| | | | |||||
| * | | Remove unused import | Jason R. Coombs | 2016-09-09 | 1 | -2/+0 |
| | | | |||||
| * | | Merge monkeypatch-module | Jason R. Coombs | 2016-09-09 | 5 | -212/+240 |
| |\ \ | |||||
| | * | | Add Deprecation warning for _get_unpatched. | Jason R. Coombs | 2016-09-09 | 2 | -1/+9 |
| | | | | |||||
| | * | | Remove unused import | Jason R. Coombs | 2016-09-09 | 1 | -1/+0 |
| | | | | |||||
| | * | | Use unpatched locally | Jason R. Coombs | 2016-09-04 | 1 | -2/+0 |
| | | | | |||||
| | * | | Move msvc patch logic into monkey module. | Jason R. Coombs | 2016-09-04 | 2 | -70/+79 |
| | | | | |||||
| | * | | distutils will always be in globals | Jason R. Coombs | 2016-09-04 | 1 | -4/+0 |
| | | | | |||||
| | * | | Move (much of?) the rest of the monkey patching into the monkey module | Jason R. Coombs | 2016-09-04 | 3 | -90/+95 |
| | | | | |||||
| | * | | Remove private prefix from monkey as monkey module explicitly declares that ↵ | Jason R. Coombs | 2016-09-04 | 4 | -6/+6 |
| | | | | | | | | | | | | | | | | all functions are private. | ||||
| | * | | Move monkeypatching in package module into monkey. | Jason R. Coombs | 2016-09-04 | 2 | -35/+41 |
| | | | | |||||
| | * | | Introduce a new monkey module to encapsulate the monkeypatching. | Jason R. Coombs | 2016-09-04 | 4 | -21/+28 |
| | | | | |||||
| * | | | Use EXT_SUFFIX instead of SO for py_limited_api renaming | Donald Stufft | 2016-09-09 | 1 | -1/+1 |
| | | | | |||||
| * | | | Use LegacyVersion instead of LooseVersion | Valentin Valls | 2016-09-06 | 1 | -2/+2 |
| | | | | | | | | | | | | - Also apply the patch for numpy 1.11.2 pre release | ||||
| * | | | Use LooseVersion instread of StrictVersion | Valentin Valls | 2016-09-05 | 1 | -2/+2 |
| |/ / | |||||
| * | | Provide forward compatibility for Warehouse as the default repository for ↵ | Jason R. Coombs | 2016-09-01 | 2 | -0/+22 |
| | | | | | | | | | | | | the upload command. | ||||
| * | | Only apply findall patch on affected Pythons. | Jason R. Coombs | 2016-09-01 | 1 | -3/+13 |
| |/ | |||||
| * | Merge pull request #753 from tlandschoff-scale/master | Jason R. Coombs | 2016-08-20 | 1 | -3/+5 |
| |\ | | | | | | | Make Extension accept positional arguments again (fixes #752). | ||||
| | * | Make Extension accept positional arguments again (fixes #752). | Torsten Landschoff | 2016-08-20 | 1 | -3/+5 |
| | | | | | | | | | | | | | | | | | | As a side effect, py_limited_api may now only be passed as keyword argument. I think it is early enough for this feature to change this and enforce the flag to be passed as a keyword... | ||||
| * | | Merge pull request #736 from Ofekmeister/master | Jason R. Coombs | 2016-08-20 | 2 | -0/+4 |
| |\ \ | | | | | | | | | Fix issue #459 | ||||
| | * | | Make import unconditional | Ofekmeister | 2016-08-20 | 2 | -2/+2 |
| | | | | | | | | | | | | | | | | Put import on top and updated CHANGES.rst | ||||
| | * | | Merge remote-tracking branch 'refs/remotes/pypa/master' | Ofekmeister | 2016-08-20 | 6 | -44/+577 |
| | |\ \ | | | |/ | |||||
| | * | | Fix issue #459 | Ofekmeister | 2016-08-16 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | Patched sys.argv[0] before loading entry point | ||||
| * | | | Default to gztar for sdists on all platforms. Ref #748. | Jason R. Coombs | 2016-08-20 | 1 | -0/+11 |
| | |/ | |/| | |||||
| * | | Remove trailing whitespace. (#751) | stepshal | 2016-08-19 | 1 | -1/+1 |
| | | | |||||
| * | | Fix quantity of blank lines after code object, class of function definition. | stepshal | 2016-08-20 | 3 | -0/+4 |
| | | | |||||
| * | | Rewrite test, dynamically generating the .tar.gz file, with help from ↵ | Jason R. Coombs | 2016-08-19 | 1 | -32/+18 |
| | | | | | | | | | | | | dstufft in #748. | ||||
| * | | Use six for python major version detection | Jason R. Coombs | 2016-08-19 | 1 | -4/+6 |
| | | | |||||
| * | | Extract variable for boolean expression for nicer indentation. | Jason R. Coombs | 2016-08-19 | 1 | -2/+6 |
| | | | |||||
| * | | Move import to the top | Jason R. Coombs | 2016-08-19 | 1 | -6/+3 |
| | | |