From 93ce5a0011c0274845c275cb5dd9d647f0a07971 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 16 Dec 2022 12:55:41 -0500 Subject: [PATCH] Default to local distutils unless specified. Fixes #3726. --- .github/workflows/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 61e8178165..3cfaaa774c 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