Skip to content

Commit

Permalink
Allow macos on Python 3.8, 3.9 to fail as GitHub CI has dropped support
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Apr 25, 2024
1 parent 2760eef commit 0ea2e84
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,11 @@ jobs:
python: "3.10"
distutils: stdlib
runs-on: ${{ matrix.platform }}
continue-on-error: ${{ matrix.python == '3.13' }}
continue-on-error: ${{
matrix.python == '3.13'
|| matrix.python == '3.8' && matrix.platform == 'macos-latest'
|| matrix.python == '3.9' && matrix.platform == 'macos-latest'
}}
env:
SETUPTOOLS_USE_DISTUTILS: ${{ matrix.distutils || 'local' }}
timeout-minutes: 75
Expand Down

0 comments on commit 0ea2e84

Please sign in to comment.