Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add another exception for the exclusion for pip. Fixes #2993.bugfix/2993-get-pip-exemption | Jason R. Coombs | 2022-01-02 | 2 | -0/+11 |
| | |||||
* | Bump version: 60.1.1 → 60.2.0v60.2.0 | Jason R. Coombs | 2021-12-29 | 7 | -6/+17 |
| | |||||
* | Add changelog. | Jason R. Coombs | 2021-12-29 | 1 | -0/+1 |
| | |||||
* | Merge https://github.com/pypa/distutils into feature/distutils-8c160a9693 | Jason R. Coombs | 2021-12-29 | 44 | -85/+76 |
|\ | |||||
| * | Merge pull request #92 from lazka/use-stdlib-get_makefile_filename | Jason R. Coombs | 2021-12-29 | 2 | -17/+7 |
| |\ | | | | | | | sysconfig: use get_makefile_filename() from stdlib sysconfig | ||||
| | * | sysconfig: use get_makefile_filename() from stdlib sysconfig | Christoph Reiter | 2021-12-27 | 2 | -17/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of guessing the filename just refer to the stdlib. This also removes the "_makefile_tmpl" hook added in #16, but 1) It was never implemented by the distro requesting it from what I can see: https://github.com/NetBSD/pkgsrc/blob/586097714897b1b4d4a9/devel/py-setuptools/Makefile#L28 2) The stdlib version should return a proper result as it is patched by the distro requesting the change: https://github.com/NetBSD/pkgsrc/blob/6efa5763ec447864a7d4/lang/python38/patches/patch-Lib_sysconfig.py Also adds a small test checking that the file exists on Unix platforms | ||||
| * | | Merge pull request #94 from lazka/fix-test-deprecations | Jason R. Coombs | 2021-12-29 | 41 | -44/+44 |
| |\ \ | | | | | | | | | tests: use loadTestsFromTestCase() instead of the deprecated makeSuite() | ||||
| | * | | tests: use loadTestsFromTestCase() instead of the deprecated makeSuite() | Christoph Reiter | 2021-12-27 | 41 | -44/+44 |
| | |/ | | | | | | | | | | | | | | | | See https://github.com/python/cpython/pull/28299 loadTestsFromTestCase() is available since Python 2.7 at least. | ||||
| * | | Merge pull request #96 from lazka/less-strict-pyconfigh-tests | Jason R. Coombs | 2021-12-29 | 1 | -2/+1 |
| |\ \ | | | | | | | | | tests: fix tests on Ubuntu 22.04 | ||||
| | * | | tests: fix tests on Ubuntu 22.04 | Christoph Reiter | 2021-12-27 | 1 | -2/+1 |
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I added a test for sysconfig.parse_config_h() in 9d0b8cda407 which assumed pyconfig.h always has some macros defined and checked that the result was non-empty. On Ubuntu 22.04 the pyconfig.h is just a shim, including various platform specific configs and not defining anything directly. This changes the test to not assume anything about the output of parse_config_h() instead. | ||||
| * | | Merge pull request #97 from lazka/dont-assume-py-exe-name | Jason R. Coombs | 2021-12-29 | 1 | -1/+1 |
| |\ \ | | | | | | | | | tests: use sys.executable instead of hardcoding "python" | ||||
| | * | | tests: use sys.executable instead of hardcoding "python" | Christoph Reiter | 2021-12-27 | 1 | -1/+1 |
| | |/ | | | | | | | | | | | | | | | | Don't assume a "python" is in PATH. Fixes this test when run from an uninstalled Python at least. | ||||
| * | | It really must be literally 39. | Jason R. Coombs | 2021-12-29 | 1 | -4/+4 |
| | | | |||||
| * | | Unset VIRTUALENV_NO_SETUPTOOLS for ci_setuptools because pytest-virtualenv ↵ | Jason R. Coombs | 2021-12-29 | 1 | -1/+2 |
| | | | | | | | | | | | | can't install without it. Ref man-group/pytest-plugins#190 | ||||
| * | | 39 is actually required to get the right packages. | Jason R. Coombs | 2021-12-29 | 1 | -4/+4 |
| | | | |||||
| * | | Also use PEP 517 to build things like pytest-virtualenv. | Jason R. Coombs | 2021-12-29 | 1 | -0/+1 |
| | | | |||||
| * | | Disable setuptools installation. Fixes pypa/distutils#99. | Jason R. Coombs | 2021-12-29 | 1 | -0/+4 |
| | | | |||||
| * | | Restore 'get_versions' attribute, allowing older mpi4py to monkeypatch it. ↵ | Jason R. Coombs | 2021-12-29 | 1 | -0/+6 |
| | | | | | | | | | | | | Fixes pypa/setuptools#2969. | ||||
| * | | Use line-based matrix values for nicer diffs. Remove Python 3.6 and bump to ↵ | Jason R. Coombs | 2021-12-28 | 1 | -7/+17 |
| |/ | | | | | | | Python 3.10, matching jaraco/skeleton and pypa/setuptools approaches. | ||||
| * | Merge pull request #91 from lazka/use-stdlib-get_config_h_filename | Jason R. Coombs | 2021-12-26 | 1 | -2/+2 |
| |\ | | | | | | | sysconfig: use get_config_h_filename() from the stdlib | ||||
| | * | sysconfig: use get_config_h_filename() from the stdlib | Christoph Reiter | 2021-12-26 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | distutils.sysconfig provides various functions already present in the stdlib sysconfig module. Reusing the stdlib versions has the advantage that it is in control of the Python distributor/packager and distutils doesn't have to deal with platform details. This tries to start the transition using the simple get_config_h_filename() for starters by forwarding calls to the stdlib in case Python is considered to be installed. | ||||
| * | | sysconfig: use parse_config_h() from stdlib sysconfig | Christoph Reiter | 2021-12-27 | 2 | -20/+12 |
| | | | | | | | | | | | | The only difference is the argument name change | ||||
| * | | 👹 Feed the hobgoblins (delint). | Jason R. Coombs | 2021-12-26 | 1 | -1/+5 |
| |/ | |||||
* | | Merge pull request #2962 from nitzmahone/setuptools_picky_shim | Jason R. Coombs | 2021-12-29 | 2 | -6/+13 |
|\ \ | | | | | | | distutils shim should ignore setuptools on another path | ||||
| * | | Update changelog. | Jason R. Coombs | 2021-12-29 | 1 | -0/+1 |
| | | | |||||
| * | | Merge branch 'main' into setuptools_picky_shim | Jason R. Coombs | 2021-12-29 | 14 | -202/+147 |
| |\ \ | |||||
| * | | | Check early for the presence of local distutils and bail out if the found ↵ | Jason R. Coombs | 2021-12-29 | 1 | -8/+6 |
| | | | | | | | | | | | | | | | | version of Setuptools doesn't have distutils. | ||||
| * | | | Restore assertion about expected distutils. | Jason R. Coombs | 2021-12-29 | 1 | -3/+1 |
| | | | | |||||
| * | | | distutils shim should ignore setuptools on another path | Matt Davis | 2021-12-23 | 1 | -1/+12 |
| | | | | |||||
* | | | | Merge pull request #2984 from pypa/bugfix/2983-ensure-shim | Jason R. Coombs | 2021-12-29 | 3 | -5/+6 |
|\ \ \ \ | | | | | | | | | | | Restore 'add_shim' as the way to invoke the hook | ||||
| * | | | | Restore 'add_shim' as the way to invoke the hook. Avoids compatibility ↵ | Jason R. Coombs | 2021-12-29 | 3 | -5/+6 |
| | |/ / | |/| | | | | | | | | | | issues between different versions of Setuptools with the distutils local implementation. Renamed the former 'add_shim' as 'insert_shim'. Fixes #2983 | ||||
* | | | | Merge pull request #2974 from pypa/feature/logging | Jason R. Coombs | 2021-12-28 | 3 | -0/+33 |
|\ \ \ \ | |/ / / |/| | | | Enable logging through Python logging module | ||||
| * | | | Monkey patch distutils.log.set_threshold so the Python logger honors calls ↵ | Jason R. Coombs | 2021-12-28 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | to it. | ||||
| * | | | Add setuptools.log to supersede distutils.log. Ref #2973. | Jason R. Coombs | 2021-12-28 | 3 | -0/+25 |
|/ / / | |||||
* | | | Merge pull request #2978 from abravalheri/revert-sphinx-workaround | Jason R. Coombs | 2021-12-28 | 2 | -4/+1 |
|\ \ \ | | | | | | | | | Remove workaround for test/CI dependency on Sphinx | ||||
| * | | | Leave sphinx unpinned as found upstream. | Jason R. Coombs | 2021-12-28 | 1 | -1/+1 |
| | | | | |||||
| * | | | Remove workaround for test/CI dependency on Sphinx | Anderson Bravalheri | 2021-12-27 | 2 | -5/+2 |
| | | | | | | | | | | | | | | | | | | | | It seems that Sphinx now supports Python 3.10, which means that we can remove the dependency workaround. | ||||
* | | | | Bump version: 60.1.0 → 60.1.1v60.1.1 | Jason R. Coombs | 2021-12-28 | 4 | -3/+11 |
| | | | | |||||
* | | | | Bypass distutils loader when setuptools module is no longer available on ↵ | Jason R. Coombs | 2021-12-28 | 2 | -0/+8 |
|/ / / | | | | | | | | | | sys.path. Fixes #2980. | ||||
* | | | Mark test as xfail. Fixes #2975. | Jason R. Coombs | 2021-12-26 | 1 | -0/+1 |
| | | | |||||
* | | | Remove skipif for Python 3.6, no longer supported. | Jason R. Coombs | 2021-12-26 | 1 | -1/+0 |
| | | | |||||
* | | | Include channel in the URL. | Jason R. Coombs | 2021-12-26 | 1 | -1/+1 |
| | | | |||||
* | | | Add discord badge | Jason R. Coombs | 2021-12-26 | 1 | -0/+4 |
| | | | |||||
* | | | Merge pull request #2966 from eacheson/patch-1 | Jason R. Coombs | 2021-12-24 | 1 | -13/+13 |
|\ \ \ | | | | | | | | | Update quickstart.rst | ||||
| * | | | Update quickstart.rst | eacheson | 2021-12-24 | 1 | -13/+13 |
|/ / / | | | | | | | fix various english issues | ||||
* | | | Bump version: 60.0.5 → 60.1.0v60.1.0 | Jason R. Coombs | 2021-12-23 | 5 | -4/+12 |
| | | | |||||
* | | | Update changelog. | Jason R. Coombs | 2021-12-23 | 1 | -0/+1 |
| | | | |||||
* | | | Merge https://github.com/pypa/distutils into feature/distutils-a5af364910 | Jason R. Coombs | 2021-12-23 | 4 | -169/+37 |
|\ \ \ | | |/ | |/| | |||||
| * | | Merge pull request #89 from isuruf/spawn | Jason R. Coombs | 2021-12-23 | 1 | -1/+1 |
| |\ \ | | | | | | | | | Fix spawn fallback | ||||
| | * | | Use mock.patch.dict to patch os.environ | Isuru Fernando | 2021-12-24 | 1 | -1/+1 |
| |/ / |