Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9ad28c3

Browse filesBrowse files
committed
Exclude unavailable Python versions for M1 runner
Some versions of Python do not currently have builds available via actions/setup-python for the Apple Silicon M1 (64-bit ARM) runner used for macos-14. This excludes those. - Python 3.7 is EoL and builds for it are no likely to be provided for newly available platforms on GitHub Actions. - Python 3.8 and 3.9 are still supported by the Python Software Foundation. Builds for them are not currently avaialable on the GHA M1 runners, but it appears this may not be intentional. See actions/setup-python#808. If those versions become available, then they can be reenabled. - Later versions of Python are available.
1 parent 8342f82 commit 9ad28c3
Copy full SHA for 9ad28c3

File tree

1 file changed

+7
-0
lines changed
Filter options

1 file changed

+7
-0
lines changed

‎.github/workflows/pythonpackage.yml

Copy file name to clipboardExpand all lines: .github/workflows/pythonpackage.yml
+7Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ jobs:
1515
matrix:
1616
os: ["ubuntu-latest", "macos-13", "macos-14", "windows-latest"]
1717
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
18+
exclude:
19+
- os: "macos-14"
20+
python-version: "3.7"
21+
- os: "macos-14"
22+
python-version: "3.8"
23+
- os: "macos-14"
24+
python-version: "3.9"
1825
include:
1926
- experimental: false
2027

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.