summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Update changelog.bugfix/2938-easy-install-schemesJason R. Coombs2021-12-201-0/+1
* Add fallback support for distutils in stdlib.Jason R. Coombs2021-12-201-3/+11
* In easy_install, re-use scheme selection from distutils if available.Jason R. Coombs2021-12-201-8/+5
* Merge https://github.com/pypa/distutils into bugfix/2938-easy-install-schemesJason R. Coombs2021-12-201-23/+42
|\
| * Extract _select_scheme function to be re-used by Setuptools.Jason R. Coombs2021-12-201-23/+42
* | Bump version: 59.8.0 → 60.0.0v60.0.0Jason R. Coombs2021-12-194-3/+11
* | Merge pull request #2896 from pypa/feature/local-distutilsJason R. Coombs2021-12-193-2/+3
|\ \
| * | Consider this a breaking change.feature/local-distutilsJason R. Coombs2021-12-101-0/+0
| * | Update changelog.Jason R. Coombs2021-11-181-0/+1
| * | Restore local distutils as the default.Jason R. Coombs2021-11-182-2/+2
* | | Merge pull request #2934 from aphedges/2884-fix-distutils-commit-linksJason R. Coombs2021-12-191-0/+4
|\ \ \
| * | | Render distutils commit links properly in docsAlex Hedges2021-12-191-0/+4
* | | | Merge branch 'main' of https://github.com/pypa/setuptoolsJason R. Coombs2021-12-191-0/+19
|\ \ \ \ | |/ / /
| * | | Merge pull request #2909 from mkoeppe/ci_cygwinJason R. Coombs2021-12-181-0/+19
| |\ \ \
| | * | | .github/workflows/main.yml: Add test_cygwinMatthias Koeppe2021-11-271-0/+19
* | | | | Bump version: 59.7.0 → 59.8.0v59.8.0Jason R. Coombs2021-12-194-3/+11
* | | | | Add changelogJason R. Coombs2021-12-191-0/+1
* | | | | Merge distutils into main.Jason R. Coombs2021-12-19383-138/+70080
|\ \ \ \ \ | |/ / / / | | | | / | |_|_|/ |/| | |
| * | | Bump version: 59.6.0 → 59.7.0v59.7.0Jason R. Coombs2021-12-174-3/+11
| * | | Bump minimum version to rely on WindowsPath in subprocess. Fixes #2932.Jason R. Coombs2021-12-171-1/+1
| * | | Try using pypy-3.7 as that's what the readme suggests. Fixes #2931.Jason R. Coombs2021-12-171-1/+1
| * | | Merge https://github.com/jaraco/skeletonJason R. Coombs2021-12-174-4/+3
| |\ \ \
| | * | | Remove filtered warnings, addressed upstream.Jason R. Coombs2021-12-171-2/+0
| | * | | Require Python 3.7 or later.Jason R. Coombs2021-11-242-2/+2
| * | | | Bump version: 59.5.0 → 59.6.0v59.6.0Jason R. Coombs2021-12-124-3/+11
| * | | | Merge pull request #2925 from pypa/debt/deprecate-versionJason R. Coombs2021-12-129-31/+59
| |\ \ \ \
| | * | | | In depends, rely on packaging instead of distutils for version management.Jason R. Coombs2021-12-122-12/+9
| | * | | | In dist, rely on packaging instead of distutils for version management.Jason R. Coombs2021-12-121-5/+8
| | * | | | Merge with pypa/distutils@92082ee42c.debt/deprecate-versionJason R. Coombs2021-12-126-14/+42
| | |\ \ \ \ | |/ / / / /
| * | | | | Bump version: 59.4.0 → 59.5.0v59.5.0Jason R. Coombs2021-12-054-3/+11
| * | | | | Merge pull request #2915 from rodrigomologni/docs/fix-typo-and-exampleJason R. Coombs2021-12-052-2/+2
| |\ \ \ \ \
| | * | | | | fix: typo 'extras_require'Rodrigo Mologni2021-12-041-1/+1
| | * | | | | fix: 'python_requires' must be a stringRodrigo Mologni2021-12-041-1/+1
| * | | | | | Re-implement yield_lines as a singledispatch function.Jason R. Coombs2021-12-031-12/+13
| * | | | | | Merge branch 'main' of https://github.com/pypa/setuptoolsJason R. Coombs2021-12-031-2/+5
| |\ \ \ \ \ \ | | |/ / / / /
| | * | | | | Update comment and docstring.Jason R. Coombs2021-11-291-2/+5
| * | | | | | Merge https://github.com/pypa/distutils at 8f2df0bf6.Jason R. Coombs2021-12-033-3/+14
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | |
| * | | | | | Bump version: 59.3.0 → 59.4.0v59.4.0Jason R. Coombs2021-11-284-3/+11
| * | | | | | When repairing bad summaries, use only the first line.Jason R. Coombs2021-11-281-1/+1
| * | | | | | Revert "Merge pull request #2870 from webknjaz/maintenance/fail-loudly-on-inv...Jason R. Coombs2021-11-282-4/+5
| | |_|_|/ / | |/| | | |
| * | | | | Bump version: 59.2.0 → 59.3.0v59.3.0Jason R. Coombs2021-11-265-4/+15
| * | | | | Merge pull request #2907 from pypa/bugfix/2906-distutils-raceJason R. Coombs2021-11-263-15/+12
| |\ \ \ \ \
| | * | | | | Remove reliance on distutils log verbosity.Jason R. Coombs2021-11-261-10/+3
| | * | | | | Bind to 'distutils.log' late in case the loader has changed.Jason R. Coombs2021-11-262-4/+3
| | * | | | | In ensure_local_distutils, re-use DistutilsMetaFinder to load the module. Avo...bugfix/2906-distutils-raceJason R. Coombs2021-11-262-4/+9
| |/ / / / /
| * | | | | Remove 'sample_test' fixture, unused.Jason R. Coombs2021-11-261-59/+0
| * | | | | Use jaraco.path.build in test_tests_are_run_once.Jason R. Coombs2021-11-261-18/+18
| * | | | | Merge pull request 2902.Jason R. Coombs2021-11-223-20/+61
| |\ \ \ \ \ | | |_|_|_|/ | |/| | | |
| | * | | | Add changelog.Jason R. Coombs2021-11-221-0/+1
| * | | | | Bump version: 59.1.1 → 59.2.0v59.2.0Jason R. Coombs2021-11-184-3/+11