diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2022-12-16 12:55:41 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-12-16 13:21:35 -0500 |
| commit | 93ce5a0011c0274845c275cb5dd9d647f0a07971 (patch) | |
| tree | 4802fd18cf932360557c0b8ac750acaa4fde166d /.github | |
| parent | e12f73cad1f9040264355832cdfc38d0ab28bfe2 (diff) | |
| download | python-setuptools-git-93ce5a0011c0274845c275cb5dd9d647f0a07971.tar.gz | |
Default to local distutils unless specified. Fixes #3726.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 61e81781..3cfaaa77 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,8 +45,6 @@ jobs: test: strategy: matrix: - distutils: - - local python: - "3.7" # disabled due to #3365 @@ -68,13 +66,14 @@ jobs: platform: ubuntu-latest - python: pypy3.9 platform: ubuntu-latest + distutils: stdlib - platform: ubuntu-latest python: "3.10" distutils: stdlib runs-on: ${{ matrix.platform }} continue-on-error: ${{ matrix.python == '3.12' }} env: - SETUPTOOLS_USE_DISTUTILS: ${{ matrix.distutils }} + SETUPTOOLS_USE_DISTUTILS: ${{ matrix.distutils || 'local' }} timeout-minutes: 75 steps: - uses: actions/checkout@v3 |
