Skip to content

Commit

Permalink
Allow macos on Python 3.8 to fail as GitHub CI has dropped support.
Browse files Browse the repository at this point in the history
Closes #124.
  • Loading branch information
jaraco committed Apr 24, 2024
1 parent f4529af commit 744cf2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Expand Up @@ -50,7 +50,7 @@ jobs:
- python: pypy3.10
platform: ubuntu-latest
runs-on: ${{ matrix.platform }}
continue-on-error: ${{ matrix.python == '3.13' }}
continue-on-error: ${{ matrix.python == '3.13' || (matrix.python == '3.8' || matrix.python == '3.9') && matrix.platform == 'macos-latest' }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
Expand Down

0 comments on commit 744cf2a

Please sign in to comment.