From facaabb0657c9964e78385475fb2f5a4262b6228 Mon Sep 17 00:00:00 2001 From: Lukas Burgholzer Date: Mon, 5 Aug 2024 12:28:19 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20add=20free-threaded=20python=20t?= =?UTF-8?q?o=20`ignore=5Fregexes`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- delvewheel/_dll_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/delvewheel/_dll_list.py b/delvewheel/_dll_list.py index 2ddd995..346520a 100644 --- a/delvewheel/_dll_list.py +++ b/delvewheel/_dll_list.py @@ -38,7 +38,7 @@ def platform_tag_to_type(cls, tag: str) -> typing.Optional['MachineType']: # set of regular expressions for additional DLLs to ignore ignore_regexes = { - re.compile(r'python[0-9]+(_d)?\.dll'), # included in CPython distribution + re.compile(r'python[0-9]+t?(_d)?\.dll'), # included in CPython distribution re.compile(r'libpypy([0-9]+\.)*[0-9]+-c\.dll'), # included in PyPy distribution re.compile('api-.*'), # let Windows handle API sets }