summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | Merge pull request #2254 from pypa/better-covJason R. Coombs2020-07-122-4/+18
| |\ \ \ \ \ | | | | | | | | | | | | | | Programmatically disable coverage when running on PyPy.
| | * | | | | 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
| | * | | | | | Warn the user when distutils is present to discourage this usage and direct ↵Jason R. Coombs2020-07-122-1/+19
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | users to the recommended usage. Closes #2230.
| * | | | | | Merge pull request #2253 from hugovk/gha-3.9-devJason R. Coombs2020-07-121-0/+9
| |\ \ \ \ \ \ | | |_|_|_|/ / | |/| | | | | Test Python 3.9-dev on GitHub Actions
| | * | | | | 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
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | Fix race in spawn
| | * | | | | 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.
| | | | * | | Allow spawn to accept environment. Avoid monkey-patching global state. ↵Jason R. Coombs2020-07-122-10/+6
| | | |/ / / | | | | | | | | | | | | | | | | | | Closes pypa/setuptools#2212 and closes pypa/distutils#5.
| * | | | | Merge pull request #2249 from alexhenrie/impJason R. Coombs2020-07-123-2/+3
| |\ \ \ \ \ | | |/ / / / | |/| | | | Change exec_module to load_module
| | * | | | Update changelog.Jason R. Coombs2020-07-121-0/+1
| | | | | |
| | * | | | Change exec_module to load_moduleAlex Henrie2020-07-112-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #2246
| * | | | | 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-dev on Travis CI
| | * | | | 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
| |\ \ \ \ \ | | |/ / / / | |/| | | | Re-enable distutils adoption with escape hatch
| | * | | | Allow opt-in and opt-out of distutils adoption at run time with ↵distutils-adopt-escape-hatchJason R. Coombs2020-07-113-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | SETUPTOOLS_USE_DISTUTILS environment variable.
| | * | | | 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
| |\ \ \ \ | | | | | | | | | | | | Remove py2warn
| | * | | | 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
| | | | | | | | | | | | | | | | | | | | | | | | warning can be issueed.
| * | | | | Merge pull request #2241 from pypa/refresh-distutilsJason R. Coombs2020-07-0818-46/+120
| |\ \ \ \ \ | | |/ / / / | |/| | | | Refresh distutils
| | * | | | Merge commit 'bbe8e80bcbafff8cf3d135d17a8526c8ac5f4b27' of ↵Jason R. Coombs2020-07-0818-46/+120
| | |\ \ \ \ | |/ / / / / | | | _ / / | | | / / https://github.com/pypa/distutils into refresh-distutils
| | * | | 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
| | | | | | | | | | | | | | | | | | Automerge-Triggered-By: @jaraco
| | | * | | 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
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use new test.support helper submodules in tests: * distutils tests * test_buffer * test_compile * test_filecmp * test_fileinput * test_readline * test_smtpnet * test_structmembers * test_tools
| | | * | | 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
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix test_copyreg when numpy is installed: test.pickletester now saves/restores warnings.filters when importing numpy, to ignore filters installed by numpy. Add the save_restore_warnings_filters() function to the test.support.warnings_helper module.
| | * | | | Move assert outside the context so it actually has its effect.Jason R. Coombs2020-07-071-1/+1
| | | | | |
| * | | | | Merge pull request #2236 from pypa/bugfix/2228-spawn-missingJason R. Coombs2020-07-053-3/+20
| |\ \ \ \ \ | | | | | | | | | | | | | | Restore support for spawn when compiler is missing
| | * \ \ \ \ Merge branch 'master' into bugfix/2228-spawn-missingJason R. Coombs2020-07-0531-14/+1281
| | |\ \ \ \ \ | | |/ / / / / | |/| | | | |
| * | | | | | Remove stale description of packaging.Jason R. Coombs2020-07-041-8/+1
| | | | | | |
| * | | | | | Add banner to main docs pageJason R. Coombs2020-07-041-2/+5
| | | | | | |
| * | | | | | Render logo in the readme.Jason R. Coombs2020-07-041-0/+4
| | | | | | |
| * | | | | | Rename logo assets to remove project name and 'logo', which are implied by ↵Jason R. Coombs2020-07-049-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | the context.
| * | | | | | Merge pull request #2229 from cajhne/logo001Jason R. Coombs2020-07-0424-0/+1258
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Add logo resources, closes #2227.
| | * | | | | | Use lowercase 't' for consistency in branding.Jason R. Coombs2020-07-041-2/+2
| | | | | | | |
| | * | | | | | Add logo resourcescajhne2020-07-0324-0/+1258
| | | | | | | |
| * | | | | | | Amend changelog for 48.0 to include more detail about usage expectations. ↵Jason R. Coombs2020-07-031-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref #2230.
| * | | | | | | Bump version: 49.0.0 → 49.1.0v49.1.0Jason R. Coombs2020-07-034-3/+8
| | | | | | | |
| * | | | | | | Merge pull request #2231 from pypa/bugfix/disable-distutilsJason R. Coombs2020-07-033-1/+4
| |\ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | | Disable distutils adoption
| | * | | | | | Omit distutils_patch from test collection.Jason R. Coombs2020-07-031-0/+1
| | | | | | | |
| | * | | | | | Update changelog. Ref #2228 and #2230.Jason R. Coombs2020-07-031-0/+1
| | | | | | | |
| | * | | | | | Disable adopted distutils while troubleshooting #2228 and #2230.Jason R. Coombs2020-07-031-1/+2
| |/ / / / / /