Skip to content

Commit 6cf8f15

Browse files
committed
Windows fix
1 parent 0f22846 commit 6cf8f15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cuda_bindings/tests/test_cython_abi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def pyx_capi_to_json(d: dict[str, object]) -> dict[str, str]:
4848

4949
def extract_name(v: object) -> str:
5050
v = str(v)
51-
match = re.match(r'<capsule object "([^\"]+)" at 0x[0-9a-f]+>', v)
51+
match = re.match(r'<capsule object "([^\"]+)" at 0x[0-9a-fA-F]+>', v)
5252
assert match, f"Could not parse __pyx_capi__ entry: {v}"
5353
return match.group(1)
5454

0 commit comments

Comments
 (0)