summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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 ↵Jason R. Coombs2021-11-282-4/+5
| | | | | | | | | webknjaz/maintenance/fail-loudly-on-invalid-summary" This reverts commit 77678abf97b4a8ee5e6e67b14cb21f543cd6bfd9, reversing changes made to f2de34767a7ba6dc79b73e474b3e2ffdbfd6e75b. Fixes #2893.
* 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
|\ | | | | In ensure_local_distutils, re-use DistutilsMetaFinder
| * 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. ↵bugfix/2906-distutils-raceJason R. Coombs2021-11-262-4/+9
|/ | | | Avoids race conditions when _distutils_system_mod is employed and fixes #2906.
* 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
| |
| * Merge pull request #71 from abravalheri/use-tokenizeJason R. Coombs2021-11-222-20/+60
| |\ | | | | | | Update `distutils.core.setup/run_setup` to better match `setuptools.build_meta`.
| | * Remove early initialization of 'commands'; unneeded.Jason R. Coombs2021-11-221-4/+0
| | |
| | * Preserve orignal comment positionAnderson Bravalheri2021-11-221-1/+1
| | |
| | * Use tokenize.open directly (available on Python>= 3.2)Anderson Bravalheri2021-11-221-3/+2
| | |
| | * Ensure distribution object is returnedAnderson Bravalheri2021-11-221-0/+2
| | |
| | * Add test for run_commandsAnderson Bravalheri2021-11-212-0/+12
| | |
| | * Separate run_commands from distutils.core.setupAnderson Bravalheri2021-11-211-20/+30
| | | | | | | | | | | | This allows reusing the function for already made distribution objects.
| | * Adopt setuptools.build_meta approach for run_setupAnderson Bravalheri2021-11-211-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | `setuptools.build_meta` uses `tokenize.open` instead of open (and replaces `\r\n` with `\n`) when exec-ing `setup.py` files. It seems that the advantage of using `tokenize.open` is that it supports automatic encoding detection.
| | * Ensure run_setup handles `if __name__ == '__main__'`Anderson Bravalheri2021-11-211-0/+17
| |/ | | | | | | Adds a unit test for that scenario
* | Bump version: 59.1.1 → 59.2.0v59.2.0Jason R. Coombs2021-11-184-3/+11
| |
* | Merge pull request #2875 from pypa/feature/local-schemesJason R. Coombs2021-11-189-77/+172
|\ \ | | | | | | Update distutils @514e9d0
| * | Add changelog.Jason R. Coombs2021-11-181-0/+1
| | |
| * | Merge https://github.com/pypa/distutils into feature/local-schemesJason R. Coombs2021-11-185-19/+70
| |\ \ | | |/
| | * Merge pull request #69 from pypa/feature/pkgsrc-compatJason R. Coombs2021-11-182-12/+29
| | |\ | | | | | | | | Allow pkgsrc to monkeypatch settings instead of relying on patches.
| | | * Add comments to help protect these interfaces from refactoring without ↵Jason R. Coombs2021-11-171-0/+1
| | | | | | | | | | | | | | | | consideration.
| | | * Allow overrides of _multiarch_addendum and _sysconfig_name_tmpl, supporting ↵Jason R. Coombs2021-11-132-12/+28
| | | | | | | | | | | | | | | | the patches used by pkgsrc. Fixes #16.
| | * | Merge pull request #68 from pypa/feature/debian-compatJason R. Coombs2021-11-183-8/+32
| | |\ \ | | | | | | | | | | Add hook to enable monkeypatching in Debian and unblock distutils adoption in Setuptools.
| | | * | Add comments to help protect these interfaces from refactoring without ↵Jason R. Coombs2021-11-172-0/+5
| | | |/ | | | | | | | | | | | | consideration.
| | | * Remove monkeypatch, as it was for illustration purposes only.Jason R. Coombs2021-11-131-121/+0
| | | |
| | | * Move the monkeypatch behavior to the hook target and invoke it on import.Jason R. Coombs2021-11-131-6/+4
| | | |
| | | * Add a hook on import of distutils that will allow Debian to override the ↵Jason R. Coombs2021-11-131-0/+10
| | | | | | | | | | | | | | | | default behavior. Fixes #2.
| | | * Scheme now uses 'posix'Jason R. Coombs2021-11-131-3/+3
| | | |
| | | * Create hooks and implement Debian's patches against those hooks. Fixes #2.Jason R. Coombs2021-11-133-8/+140
| | | |
| | * | Merge pull request #41 from imba-tjd/patch-1Jason R. Coombs2021-11-172-1/+13
| | |\ \ | | | |/ | | |/| Update msc_ver detection
| | | * Update test_cygwinccompiler.py谭九鼎2021-11-151-1/+1
| | | |
| | | * Update test_cygwinccompiler.py谭九鼎2021-11-151-0/+3
| | | |
| | | * Update distutils/cygwinccompiler.py谭九鼎2021-11-151-1/+1
| | | | | | | | | | | | Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
| | | * Update cygwinccompiler.py谭九鼎2021-11-151-1/+1
| | | |
| | | * Update cygwinccompiler.py谭九鼎2021-11-151-3/+3
| | | |
| | | * Update msc_ver detection谭九鼎2021-11-151-0/+9
| | |/
| | * Merge pull request #23 from pypa/feature/local-schemesJason R. Coombs2021-11-123-58/+101
| | |\ | | | | | | | | Allow sysconfig to override install schemes...
| * | \ Merge branch 'main' into feature/local-schemesfeature/local-schemesJason R. Coombs2021-11-12402-80/+69289
| |\ \ \ | | |_|/ | |/| |
| * | | Rename 'posix' to 'unix' to match sysconfig. Merge both definitions with ↵Jason R. Coombs2021-11-122-12/+20
| | | | | | | | | | | | | | | | sysconfig.
| * | | Revert "Rename 'headers' to 'include' to match sysconfig."Jason R. Coombs2021-11-121-17/+13
| | | | | | | | | | | | | | | | This reverts commit e4466cd3436c6b331fac85bd28d1fdaa658772f7.
| * | | Prefer 'posix_*' to 'unix_*'Jason R. Coombs2021-11-061-4/+4
| | | |
| * | | Copy installed_base from sysconfig.get_config_vars.Jason R. Coombs2021-11-061-2/+5
| | | |
| * | | Clean up 'invalid variable'. A KeyError already includes the quotes when ↵Jason R. Coombs2021-11-061-1/+1
| | | | | | | | | | | | | | | | rendered.
| * | | Merge branch 'main' into feature/local-schemesJason R. Coombs2021-11-0622-309/+388
| |\ \ \