Skip to content

Commit

Permalink
Support for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
adang1345 committed Jul 1, 2024
1 parent 456c725 commit fd62b82
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions delvewheel/_dll_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,18 @@ def platform_tag_to_type(cls, tag: str) -> typing.Optional['MachineType']:
'cp312d-win_amd64': {'vcruntime140d.dll', 'ucrtbased.dll'},
'cp312-win_arm64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
'cp312d-win_arm64': {'vcruntime140d.dll', 'ucrtbased.dll'},
'cp313-win32': {'vcruntime140.dll'},
'cp313t-win32': {'vcruntime140.dll'},
'cp313d-win32': {'vcruntime140d.dll', 'ucrtbased.dll'},
'cp313td-win32': {'vcruntime140d.dll', 'ucrtbased.dll'},
'cp313-win_amd64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
'cp313t-win_amd64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
'cp313d-win_amd64': {'vcruntime140d.dll', 'ucrtbased.dll'},
'cp313td-win_amd64': {'vcruntime140d.dll', 'ucrtbased.dll'},
'cp313-win_arm64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
'cp313t-win_arm64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
'cp313d-win_arm64': {'vcruntime140d.dll', 'ucrtbased.dll'},
'cp313td-win_arm64': {'vcruntime140d.dll', 'ucrtbased.dll'},
}

# DLLs to ignore based on Python tag and platform tag for a wheel that uses the
Expand Down Expand Up @@ -140,6 +152,9 @@ def platform_tag_to_type(cls, tag: str) -> typing.Optional['MachineType']:
'cp312-win32': {'vcruntime140.dll'},
'cp312-win_amd64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
'cp312-win_arm64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
'cp313-win32': {'vcruntime140.dll'},
'cp313-win_amd64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
'cp313-win_arm64': {'vcruntime140.dll', 'vcruntime140_1.dll'},
}

# Dependency relationships to ignore.
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Environment :: Console
Development Status :: 5 - Production/Stable
Operating System :: Microsoft :: Windows
Expand Down

0 comments on commit fd62b82

Please sign in to comment.