summaryrefslogtreecommitdiff
path: root/setuptools
Commit message (Collapse)AuthorAgeFilesLines
* Add doctest for normalize_versionfeature/sic-versions-in-commandsJason R. Coombs2020-10-061-1/+6
|
* Honor 'sic' versions in egg_info. Ref #2181.Jason R. Coombs2020-10-062-3/+12
|
* Extract method for maybe_tag.Jason R. Coombs2020-10-061-6/+11
|
* Merge https://github.com/pypa/distutils into masterJason R. Coombs2020-09-052-1/+45
|
* Reduce size of setuptools' bdist_rpm._make_spec_fileThomas Hisch2020-09-041-13/+1
| | | | | | | | | There are some setuptools specific changes in the bdist_rpm module that are no longer needed, because the upstream/shipped version of distutils already contains them. The code that is removed in this commit from bdist_rpm is already part of the python-3.5 version of distutils. Related: #2377
* Update tests to specify local or stdlib for stability under default value.Jason R. Coombs2020-09-021-2/+4
|
* Merge https://github.com/pypa/distutils into masterJason R. Coombs2020-09-012-1/+32
|
* Merge branch 'clean' of https://github.com/pypa/distutils into masterJason R. Coombs2020-09-011-4/+4
|
* Merge branch 'clean' of https://github.com/pypa/distutils into masterJason R. Coombs2020-08-314-3/+34
|
* Merge pull request #2255 from pypa/bugfix/2232-adopt-distutils-defaultJason R. Coombs2020-08-201-5/+4
|\ | | | | Re-enable distutils patch by default.
| * Update tests to reflect new expectation.Jason R. Coombs2020-08-131-5/+4
| |
* | pypa/setuptools#2302Aren Cambre2020-08-161-3/+4
| |
* | Remove six from 'extern' as vendored.Jason R. Coombs2020-08-161-1/+1
| |
* | Remove six as a vendored dependency.Jason R. Coombs2020-08-162-869/+0
| |
* | Remove dependency on six from packaging.Jason R. Coombs2020-08-161-1/+1
| |
* | Remove Python 2 compatibilityJason R. Coombs2020-08-1661-721/+172
|/
* Merge pull request #2306 from takluyver/pep517-setup-requiresJason R. Coombs2020-08-132-3/+50
|\ | | | | Don't install setup_requires when run as a PEP-517 backend.
| * Flake 99Thomas Kluyver2020-08-061-1/+0
| |
| * Add test for PEP 517 backends not installing setup_requiresThomas Kluyver2020-08-061-1/+31
| |
| * get_requires_for_build* hooks rely on 'installing' setup_requiresThomas Kluyver2020-08-061-4/+5
| |
| * Don't install setup_requires when run as a PEP-517 backend.Thomas Kluyver2020-08-061-1/+18
| | | | | | | | | | | | Under PEP-517, installing build dependencies is up to the frontend. Closes gh-2303
* | Merge pull request #2327 from pypa/feature/update-packagingmergify[bot]2020-08-1312-192/+888
|\ \ | | | | | | Update packaging to 20.4
| * | Update packaging to 20.4. Closes #2310.Jason R. Coombs2020-08-1212-192/+888
| | |
* | | Merge pull request #2297 from radarhere/masterJason R. Coombs2020-08-122-7/+10
|\ \ \ | |/ / |/| | Change load_module to exec_module
| * | Change load_module to exec_moduleAndrew Murray2020-08-102-7/+10
| |/
* | Expect test to fail on PyPy due to implicit import during startup.Jason R. Coombs2020-08-081-0/+4
| |
* | Remove expected fail.Jason R. Coombs2020-08-081-1/+4
| |
* | Merge branch 'master' into distutils-import-hackJason R. Coombs2020-08-086-5/+108
|\ \
| * | On Windows, SYSTEMROOT must be supplied.Jason R. Coombs2020-08-081-2/+5
| | |
| * | Bypass pytest-virtualenv due to bugs in 'run' command. Instead, use ↵Jason R. Coombs2020-08-082-18/+31
| | | | | | | | | | | | jaraco.envs.VirtualEnv and build a bespoke fixture with a run command.
| * | Support Python 3.5 and 3.6 in the tests.Jason R. Coombs2020-08-081-1/+12
| | |
| * | Add tests capturing expected distutils behavior. Ref #417.Jason R. Coombs2020-08-081-0/+37
| |/
| * Merge pull request #2294 from radarhere/patch-1Jason R. Coombs2020-08-021-1/+1
| |\ | | | | | | Fixed typo
| | * Fixed typoAndrew Murray2020-08-011-1/+1
| | |
| * | Merge branch 'clean' of https://github.com/pypa/distutils into masterJason R. Coombs2020-08-023-4/+43
| |/
* | Rename _distutils_importer to _distutils_hack, as it supplies more than just ↵Jason R. Coombs2020-07-262-5/+5
| | | | | | | | an importer.
* | Consolidate distutils importing hacks into _distutils_importer package. ↵Jason R. Coombs2020-07-192-63/+1
| | | | | | | | Generate distutils-precedence.pth inline.
* | Revert "Remove warnings"Paul Ganssle2020-07-131-1/+18
| | | | | | | | This reverts commit 30b883f0b8071a3b1472c884574f38ce0128e457.
* | Clean up setuptools/__init__.py importsPaul Ganssle2020-07-131-4/+3
| | | | | | | | This puts non-distutils imports first and removes one unused import.
* | Adjust distutils shim when removing _distutils_importerPaul Ganssle2020-07-131-3/+16
| |
* | Remove warningsPaul Ganssle2020-07-131-18/+1
|/ | | | With the new `.pth` file, these warnings are no longer necessary.
* Warn the user when distutils is present to discourage this usage and direct ↵Jason R. Coombs2020-07-121-1/+18
| | | | users to the recommended usage. Closes #2230.
* Merge pull request #2251 from pypa/bugfix/2212-distutils-spawn-raceJason R. Coombs2020-07-122-10/+6
|\ | | | | Fix race in spawn
| * Merge branch 'clean' of https://github.com/pypa/distutilsJason R. Coombs2020-07-122-10/+6
| |
* | Change exec_module to load_moduleAlex Henrie2020-07-112-2/+2
|/ | | | Fixes #2246
* Allow opt-in and opt-out of distutils adoption at run time with ↵distutils-adopt-escape-hatchJason R. Coombs2020-07-112-3/+4
| | | | SETUPTOOLS_USE_DISTUTILS environment variable.
* Provide escape hatch for distutils adoption.Jason R. Coombs2020-07-101-1/+10
|
* Merge commit 'bbe8e80bcbafff8cf3d135d17a8526c8ac5f4b27' of ↵Jason R. Coombs2020-07-0818-46/+120
| | | | https://github.com/pypa/distutils into refresh-distutils
* Merge branch 'master' into bugfix/2228-spawn-missingJason R. Coombs2020-07-051-1/+2
|\
| * Disable adopted distutils while troubleshooting #2228 and #2230.Jason R. Coombs2020-07-031-1/+2
| |