Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | | Ensure GITHUB_TOKEN is set. Closes #2328. | Jason R. Coombs | 2020-09-01 | 1 | -0/+1 | |
| | | | | ||||||
* | | | | Bump version: 50.0.2 → 50.0.3v50.0.3 | Jason R. Coombs | 2020-09-01 | 4 | -3/+8 | |
| | | | | ||||||
* | | | | Add links for distutils | Jason R. Coombs | 2020-09-01 | 1 | -0/+4 | |
| | | | | ||||||
* | | | | Merge https://github.com/pypa/distutils into master | Jason R. Coombs | 2020-09-01 | 3 | -1/+33 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Merge pull request #10 from pypa/bugfix/9-legacy-link-libpython | Jason R. Coombs | 2020-09-01 | 2 | -1/+32 | |
| |\ \ \ | | | | | | | | | | | Restore pythonlib support on older Pythons. | |||||
| | * | | | Restore pythonlib support on older Pythons. Fixes pypa/distutils#9. | Jason R. Coombs | 2020-09-01 | 2 | -1/+32 | |
| |/ / / | ||||||
| * | | | Merge branch 'clean' into master | Jason R. Coombs | 2020-09-01 | 3 | -4/+16 | |
| |\ \ \ | ||||||
| * \ \ \ | Merge branch 'clean' into master | Jason R. Coombs | 2020-08-31 | 4 | -3/+34 | |
| |\ \ \ \ | ||||||
| * \ \ \ \ | Merge branch 'clean' into master | Jason R. Coombs | 2020-08-02 | 3 | -4/+43 | |
| |\ \ \ \ \ | ||||||
| * \ \ \ \ \ | Merge branch 'clean' | Jason R. Coombs | 2020-07-12 | 2 | -10/+6 | |
| |\ \ \ \ \ \ | ||||||
| * | | | | | | | Add README, including docs describing how to synchronize with CPython. | Jason R. Coombs | 2020-07-12 | 1 | -0/+40 | |
| | | | | | | | | ||||||
* | | | | | | | | Support 'bpo-' prefix on Python bugs | Jason R. Coombs | 2020-09-01 | 1 | -1/+1 | |
| | | | | | | | | ||||||
* | | | | | | | | Bump version: 50.0.1 → 50.0.2v50.0.2 | Jason R. Coombs | 2020-09-01 | 4 | -3/+8 | |
| | | | | | | | | ||||||
* | | | | | | | | Merge pull request #2369 from pypa/bugfix/2352-relative-import-distutils-hack | Jason R. Coombs | 2020-09-01 | 2 | -1/+2 | |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | In distutils hack, use absolute import rather than relative to avoid bpo-30876. | |||||
| * | | | | | | | | In distutils hack, use absolute import rather than relative to avoid ↵ | Jason R. Coombs | 2020-09-01 | 2 | -1/+2 | |
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | bpo-30876. Fixes #2352. | |||||
* | | | | | | | | Bump version: 50.0.0 → 50.0.1v50.0.1 | Jason R. Coombs | 2020-09-01 | 6 | -7/+12 | |
| | | | | | | | | ||||||
* | | | | | | | | Update changelog. Closes #2357. | Jason R. Coombs | 2020-09-01 | 1 | -0/+1 | |
| | | | | | | | | ||||||
* | | | | | | | | Bugfix is 'misc'. Ref #2361. | Jason R. Coombs | 2020-09-01 | 1 | -0/+0 | |
| | | | | | | | | ||||||
* | | | | | | | | Update changelog. Ref #2358. | Jason R. Coombs | 2020-09-01 | 1 | -0/+1 | |
| | | | | | | | | ||||||
* | | | | | | | | Merge pull request #2361 from vstinner/master | Jason R. Coombs | 2020-09-01 | 2 | -1/+5 | |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | Add Python 3.10 support to _distutils_hack | |||||
| * | | | | | | | | Add Python 3.10 support to _distutils_hack | Victor Stinner | 2020-09-01 | 2 | -1/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Get the 'Loader' abstract class from importlib.abc rather than importlib.util.abc (alias removed in Python 3.10). | |||||
* | | | | | | | | | Merge branch 'clean' of https://github.com/pypa/distutils into master | Jason R. Coombs | 2020-09-01 | 1 | -4/+4 | |
|\ \ \ \ \ \ \ \ \ | | |_|_|_|_|/ / / | |/| | | | | | | | ||||||
| * | | | | | | | | Fix TabError | Jason R. Coombs | 2020-09-01 | 1 | -4/+4 | |
| | | | | | | | | | ||||||
| * | | | | | | | | Doctest modules for valid syntax, capturing TabError. | Jason R. Coombs | 2020-09-01 | 2 | -0/+12 | |
| | |_|_|_|/ / / | |/| | | | | | | ||||||
* | | | | | | | | Merge branch 'clean' of https://github.com/pypa/distutils into master | Jason R. Coombs | 2020-08-31 | 4 | -3/+34 | |
|\ \ \ \ \ \ \ \ | |/ / / / / / / | | / / / / / / | |/ / / / / / |/| | | | | | | ||||||
| * | | | | | | Supply a copy of _optim_args_from_interpreter_flags for Python 3.5 ↵ | Jason R. Coombs | 2020-08-31 | 2 | -1/+22 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | compatibility. Ref pypa/setuptools#2357. | |||||
| * | | | | | | Restore compatibility with aix_support on Python 3.8 and earlier. Fixes ↵ | Jason R. Coombs | 2020-08-31 | 2 | -2/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | pypa/setuptools#2358. | |||||
| * | | | | | | Supply ModuleNotFoundError for Python 3.5. | Jason R. Coombs | 2020-08-31 | 1 | -0/+3 | |
| | |_|/ / / | |/| | | | | ||||||
* | | | | | | Create Github releases when releasing. Fixes #2328. | Jason R. Coombs | 2020-08-30 | 1 | -0/+3 | |
| | | | | | | ||||||
* | | | | | | Bump version: 49.6.0 → 50.0.0v50.0.0 | Jason R. Coombs | 2020-08-20 | 5 | -4/+9 | |
| | | | | | | ||||||
* | | | | | | Merge pull request #2255 from pypa/bugfix/2232-adopt-distutils-default | Jason R. Coombs | 2020-08-20 | 4 | -11/+22 | |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Re-enable distutils patch by default. | |||||
| * | | | | | | Refactor to use lookups and consolidate behaviors. | Jason R. Coombs | 2020-08-15 | 1 | -12/+8 | |
| | | | | | | | ||||||
| * | | | | | | When pip is imported, unload any existing distutils and disable the ↵ | Jason R. Coombs | 2020-08-15 | 1 | -8/+11 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | DistutilsMetaFinder. | |||||
| * | | | | | | Bypass .pth loader when distutils is loaded from pip. Workaround for ↵ | Jason R. Coombs | 2020-08-14 | 1 | -1/+12 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | pypa/pip#8761. | |||||
| * | | | | | | Update tests to reflect new expectation. | Jason R. Coombs | 2020-08-13 | 1 | -5/+4 | |
| | | | | | | | ||||||
| * | | | | | | Merge branch 'master' into bugfix/2232-adopt-distutils-default | Jason R. Coombs | 2020-08-13 | 36 | -415/+1899 | |
| |\ \ \ \ \ \ | ||||||
| * \ \ \ \ \ \ | Merge branch 'master' into bugfix/2232-adopt-distutils-default | Jason R. Coombs | 2020-08-10 | 47 | -1400/+382 | |
| |\ \ \ \ \ \ \ | ||||||
| * | | | | | | | | Re-enable distutils patch by default. | Jason R. Coombs | 2020-07-12 | 2 | -1/+2 | |
| | | | | | | | | | ||||||
* | | | | | | | | | Merge pull request #2334 from arencambre/master | Jason R. Coombs | 2020-08-18 | 2 | -3/+5 | |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Resolving error text issue (#2302) | |||||
| * | | | | | | | | | Update changelog. | Jason R. Coombs | 2020-08-18 | 1 | -1/+1 | |
| | | | | | | | | | | ||||||
| * | | | | | | | | | Add changelog text for pypa/setuptools#2302 | Aren Cambre | 2020-08-16 | 1 | -0/+1 | |
| | | | | | | | | | | ||||||
| * | | | | | | | | | Merge branch 'master' of https://github.com/arencambre/setuptools | Aren Cambre | 2020-08-16 | 0 | -0/+0 | |
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # setuptools/msvc.py | |||||
| | * | | | | | | | | | pypa/setuptools#2302 | Aren Cambre | 2020-08-16 | 1 | -3/+3 | |
| |/ / / / / / / / / |/| | | | | | | | | | ||||||
| * | | | | | | | | | pypa/setuptools#2302 | Aren Cambre | 2020-08-16 | 1 | -3/+4 | |
|/ / / / / / / / / | ||||||
* | | | | | | | | | Remove six from 'extern' as vendored. | Jason R. Coombs | 2020-08-16 | 2 | -2/+2 | |
| | | | | | | | | | ||||||
* | | | | | | | | | Merge pull request #2332 from pypa/debt/cleanup-py2 | mergify[bot] | 2020-08-16 | 75 | -2547/+193 | |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Remove legacy Python 2 code | |||||
| * | | | | | | | | | Remove six as a vendored dependency. | Jason R. Coombs | 2020-08-16 | 5 | -1738/+1 | |
| | | | | | | | | | | ||||||
| * | | | | | | | | | Remove dependency on six from packaging. | Jason R. Coombs | 2020-08-16 | 3 | -3/+7 | |
| | | | | | | | | | | ||||||
| * | | | | | | | | | Remove Python 2 compatibility | Jason R. Coombs | 2020-08-16 | 68 | -806/+185 | |
|/ / / / / / / / / | ||||||
* | | | | | | | | | Replace hard-coded tox working dir with the environment variable, honoring ↵ | Jason R. Coombs | 2020-08-15 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | non-standard working directories. |