Skip to content

Commit

Permalink
Support abi3 wheels for Python 3.9 and 3.10 for Windows ARM64
Browse files Browse the repository at this point in the history
cibuildwheel provides experimental support for Python 3.9 and 3.10 on
Windows ARM64.
  • Loading branch information
adang1345 committed Mar 5, 2024
1 parent 4e39c18 commit ffb6cd7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions delvewheel/_dll_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,10 @@ def platform_tag_to_type(cls, tag: str) -> typing.Optional['MachineType']:
'cp38-win_amd64': {'vcruntime140.dll'},
'cp39-win32': {'vcruntime140.dll'},
'cp39-win_amd64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
'cp39-win_arm64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
'cp310-win32': {'vcruntime140.dll'},
'cp310-win_amd64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
'cp310-win_arm64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
'cp311-win32': {'vcruntime140.dll'},
'cp311-win_amd64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
'cp311-win_arm64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
Expand Down

0 comments on commit ffb6cd7

Please sign in to comment.