Skip to content

Commit d447307

Browse files
committed
Exclude gh-actions for Python 3.7 on Ubuntu 24.04 and MacOS 14
Error message: Error: The version '3.7' with architecture 'x64' was not found for Ubuntu 24.04. Error: The version '3.7' with architecture 'arm64' was not found for macOS 14.6.1. Ref: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategymatrixexclude
1 parent 2adba7a commit d447307

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/test-with-tox.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
- windows-2019
2020
- windows-2022 # windows-latest
2121
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
22+
exclude:
23+
- platform: [ubuntu-24.04, macos-14]
24+
python-version: 3.7
2225
steps:
2326
- uses: actions/checkout@v4
2427
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)