File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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} }
Original file line number Diff line number Diff 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]
203204required-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]
You can’t perform that action at this time.
0 commit comments