Skip to content

Commit a03ea12

Browse files
committed
Tmp7
1 parent 09d98f6 commit a03ea12

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/packaging_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ jobs:
4242
minimal:
4343
- ${{ inputs.minimal }}
4444
exclude:
45+
- { minimal: true, python: cp39 }
4546
- { minimal: true, python: cp310 }
4647
- { minimal: true, python: cp311 }
4748
- { minimal: true, python: cp312 }
4849
- { minimal: true, python: cp313 }
4950
- { minimal: true, platform: { arch: universal2 } }
50-
- { minimal: true, platform: { arch: amd64 } }
5151
- { minimal: true, platform: { arch: x86_64 } }
5252
- { minimal: true, platform: { arch: aarch64 } }
5353
- { minimal: true, platform: { os: macos-15} }

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,13 +197,15 @@ environments = [ # no need to resolve packages beyond these platforms with uv...
197197
"python_version >= '3.9' and sys_platform == 'darwin' and platform_machine == 'arm64'",
198198
"python_version >= '3.9' and sys_platform == 'darwin' and platform_machine == 'x86_64'",
199199
"python_version >= '3.9' and sys_platform == 'win32' and platform_machine == 'AMD64'",
200+
"python_version >= '3.9' and sys_platform == 'win32' and platform_machine == 'ARM64'",
200201
"python_version >= '3.9' and sys_platform == 'linux' and platform_machine == 'x86_64'",
201202
"python_version >= '3.9' and sys_platform == 'linux' and platform_machine == 'aarch64'",
202203
]
203204
required-environments = [ # ... but do always resolve for all of them
204205
"python_version >= '3.9' and sys_platform == 'darwin' and platform_machine == 'arm64'",
205206
"python_version >= '3.9' and sys_platform == 'darwin' and platform_machine == 'x86_64'",
206207
"python_version >= '3.9' and sys_platform == 'win32' and platform_machine == 'AMD64'",
208+
"python_version >= '3.9' and sys_platform == 'win32' and platform_machine == 'ARM64'",
207209
"python_version >= '3.9' and sys_platform == 'linux' and platform_machine == 'x86_64'",
208210
"python_version >= '3.9' and sys_platform == 'linux' and platform_machine == 'aarch64'",
209211
]

0 commit comments

Comments
 (0)