aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| | * Extract function for restoring install lib to encapsulate behavior.Jason R. Coombs2020-07-261-6/+7
| | * Remove hanging indentJason R. Coombs2020-07-261-2/+4
| | * Update docstring to use imperative voice, provide a bit more context, and adv...Jason R. Coombs2020-07-261-4/+7
| | * Extract pth name and contents into class variables.Jason R. Coombs2020-07-261-3/+6
| | * Rename _distutils_importer to _distutils_hack, as it supplies more than just ...Jason R. Coombs2020-07-267-7/+7
| | * Move docstring closer to relevant contextJason R. Coombs2020-07-192-7/+7
| | * Fix AttributeError when `importlib.util` was not otherwise imported.Jason R. Coombs2020-07-191-1/+1
| | * Consolidate distutils importing hacks into _distutils_importer package. Gener...Jason R. Coombs2020-07-198-30/+27
| | * Revert "Remove warnings"Paul Ganssle2020-07-131-1/+18
| | * Use import hook instead of sys.path manipulationPaul Ganssle2020-07-133-9/+27
| | * Clean up setuptools/__init__.py importsPaul Ganssle2020-07-131-4/+3
| | * Adjust distutils shim when removing _distutils_importerPaul Ganssle2020-07-132-6/+30
| | * Remove warningsPaul Ganssle2020-07-131-18/+1
| | * Use .pth file to import distutils from setuptoolsPaul Ganssle2020-07-135-0/+43
| |/ |/|
* | Bump version: 49.1.3 → 49.2.0v49.2.0Jason R. Coombs2020-07-124-3/+8
* | Merge pull request #2254 from pypa/better-covJason R. Coombs2020-07-122-4/+18
|\ \
| * | Programmatically disable coverage when running on PyPy.Jason R. Coombs2020-07-122-4/+18
* | | Merge pull request #2256 from pypa/bugfix/2230-warn-distutils-presentJason R. Coombs2020-07-122-1/+19
|\ \ \
| * | | Warn the user when distutils is present to discourage this usage and direct u...Jason R. Coombs2020-07-122-1/+19
|/ / /
* | | Merge pull request #2253 from hugovk/gha-3.9-devJason R. Coombs2020-07-121-0/+9
|\ \ \
| * | | Test Python 3.9-devHugo2020-07-121-0/+9
* | | | Bump version: 49.1.2 → 49.1.3v49.1.3Jason R. Coombs2020-07-125-4/+9
* | | | Merge pull request #2251 from pypa/bugfix/2212-distutils-spawn-raceJason R. Coombs2020-07-123-10/+7
|\ \ \ \ | |/ / / |/| | |
| * | | Update changelog.Jason R. Coombs2020-07-121-0/+1
| * | | Merge branch 'clean' of https://github.com/pypa/distutilsJason R. Coombs2020-07-122-10/+6
| |\ \ \ | | | |/ | | |/|
| | * | Merge pull request #6 from pypa/bugfix/2212-spawn-raceJason R. Coombs2020-07-122-10/+6
| | |\ \
| | | * | Allow spawn to accept environment. Avoid monkey-patching global state. Closes...Jason R. Coombs2020-07-122-10/+6
| | |/ /
* | | | Merge pull request #2249 from alexhenrie/impJason R. Coombs2020-07-123-2/+3
|\ \ \ \ | |/ / / |/| | |
| * | | Update changelog.Jason R. Coombs2020-07-121-0/+1
| * | | Change exec_module to load_moduleAlex Henrie2020-07-112-2/+2
* | | | Add a simple blank issue so it gets a green button.Jason R. Coombs2020-07-121-0/+4
* | | | Merge pull request #2248 from hugovk/patch-1Jason R. Coombs2020-07-121-0/+1
|\ \ \ \ | |/ / / |/| | |
| * | | Test Python 3.9-devHugo van Kemenade2020-07-111-0/+1
* | | | Bump version: 49.1.1 → 49.1.2v49.1.2Jason R. Coombs2020-07-114-3/+8
* | | | Merge pull request #2247 from pypa/distutils-adopt-escape-hatchJason R. Coombs2020-07-113-2/+13
|\ \ \ \ | |/ / / |/| | |
| * | | Allow opt-in and opt-out of distutils adoption at run time with SETUPTOOLS_US...distutils-adopt-escape-hatchJason R. Coombs2020-07-113-3/+5
| * | | Provide escape hatch for distutils adoption.Jason R. Coombs2020-07-101-1/+10
|/ / /
* | | Bump version: 49.1.0 → 49.1.1v49.1.1Jason R. Coombs2020-07-104-3/+8
* | | Merge pull request #2238 from pypa/remove-py2-warningJason R. Coombs2020-07-093-17/+1
|\ \ \
| * | | Update changelog.Jason R. Coombs2020-07-071-0/+1
| * | | Remove py2_warn, no longer needed as a SyntaxError is encountered before the ...Jason R. Coombs2020-07-072-17/+0
* | | | Merge pull request #2241 from pypa/refresh-distutilsJason R. Coombs2020-07-0818-46/+120
|\ \ \ \ | |/ / / |/| | |
| * | | Merge commit 'bbe8e80bcbafff8cf3d135d17a8526c8ac5f4b27' of https://github.com...Jason R. Coombs2020-07-0818-46/+120
|/| | | | |/ /
| * | Merge branch 'cpython'Jason R. Coombs2020-07-0718-45/+119
| |\ \
| | * | bpo-41207 In distutils.spawn, rewrite FileNotFound (GH-21359)Jason R. Coombs2020-07-072-3/+14
| | * | bpo-40275: Use new test.support helper submodules in tests (GH-21317)Hai Shi2020-07-064-19/+19
| | * | bpo-40275: Use new test.support helper submodules in tests (GH-21151)Hai Shi2020-06-2512-16/+31
| | * | bpo-41043: Escape literal part of the path for glob(). (GH-20994)Serhiy Storchaka2020-06-201-3/+3
| | * | bpo-41003: Fix test_copyreg when numpy is installed (GH-20935)Victor Stinner2020-06-171-7/+6
| * | | Move assert outside the context so it actually has its effect.Jason R. Coombs2020-07-071-1/+1