Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

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

Sign up
Appearance settings

Commit9ad28c3

Browse files
committed
Exclude unavailable Python versions for M1 runner
Some versions of Python do not currently have builds available viaactions/setup-python for the Apple Silicon M1 (64-bit ARM) runnerused 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. Seeactions/setup-python#808. If those versions become available, then they can be reenabled.- Later versions of Python are available.
1 parent8342f82 commit9ad28c3

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

‎.github/workflows/pythonpackage.yml

Lines 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)

[8]ページ先頭

©2009-2025 Movatter.jp