Skip to content

Commit 7d7e3a8

Browse files
committed
Work around missing pythonarm64 NuGet downloads for older Python versions
1 parent 25b8caa commit 7d7e3a8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
25+
# pythonarm64 NuGet's has no download for latest Python ~=3.9.11
26+
python-version: ["3.8", "3.9.10", "3.10", "3.11", "3.12", "3.13"]
2627
# CPython has no ARM distribution until 3.11
2728
python-architecture: [x64, x86]
2829
os: [windows-2019, windows-11-arm]
2930
exclude:
31+
# We provide arm64, not arm
3032
- os: windows-11-arm
3133
python-architecture: x86
32-
# python-architecture: [x64, x86, arm64]
33-
# include:
34-
# - python-architecture: arm64
35-
# os: windows-11-arm
36-
# - os: windows-2019
34+
# pythonarm64 NuGet has no download for Python 3.8
35+
- os: windows-11-arm
36+
python-version: "3.8"
3737

3838
steps:
3939
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)