We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75f7782 commit 3869b10Copy full SHA for 3869b10
.github/workflows/main.yml
@@ -63,9 +63,6 @@ jobs:
63
- platform: ubuntu-latest
64
python: "3.10"
65
distutils: stdlib
66
- # TODO: Re-evaluate the need for the following workaround
67
- exclude:
68
- - {python: "3.9", platform: "macos-latest"} # actions/setup-python#981
69
runs-on: ${{ matrix.platform }}
70
continue-on-error: ${{ matrix.python == '3.14' }}
71
env:
@@ -79,6 +76,9 @@ jobs:
79
76
with:
80
77
python-version: ${{ matrix.python }}
81
78
allow-prereleases: true
+ env:
+ # Workaround for actions/setup-python#981 (env var only modified for this specific step)
+ SETUPTOOLS_USE_DISTUTILS: ${{ matrix.platform == 'macos-latest' && matrix.python == '3.9' && 'stdlib' || matrix.distutils || 'local' }}
82
- uses: actions/cache@v4
83
id: cache
84
0 commit comments