Skip to content

Commit a85759c

Browse files
committed
Default to local distutils unless specified.
1 parent e12f73c commit a85759c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/main.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ jobs:
4545
test:
4646
strategy:
4747
matrix:
48-
distutils:
49-
- local
5048
python:
5149
- "3.7"
5250
# disabled due to #3365
@@ -68,13 +66,14 @@ jobs:
6866
platform: ubuntu-latest
6967
- python: pypy3.9
7068
platform: ubuntu-latest
69+
distutils: stdlib
7170
- platform: ubuntu-latest
7271
python: "3.10"
7372
distutils: stdlib
7473
runs-on: ${{ matrix.platform }}
7574
continue-on-error: ${{ matrix.python == '3.12' }}
7675
env:
77-
SETUPTOOLS_USE_DISTUTILS: ${{ matrix.distutils }}
76+
SETUPTOOLS_USE_DISTUTILS: ${{ matrix.distutils || 'local' }}
7877
timeout-minutes: 75
7978
steps:
8079
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)