Skip to content

Commit

Permalink
Default to local distutils unless specified. Fixes #3726.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 16, 2022
1 parent e12f73c commit 93ce5a0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ jobs:
test:
strategy:
matrix:
distutils:
- local
python:
- "3.7"
# disabled due to #3365
Expand All @@ -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
Expand Down

0 comments on commit 93ce5a0

Please sign in to comment.