Skip to content

Commit 9b2d9cb

Browse files
committed
setup.py - abi3 cp36 to cp32 (base stable api)
1 parent 0a67980 commit 9b2d9cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def __init__(self, *args, **kwargs):
122122

123123
if IS_PYTHON3 and CIBUILDWHEEL:
124124
kwargs['py_limited_api'] = True
125-
define_macros.append(('Py_LIMITED_API', '0x03060000'))
125+
define_macros.append(('Py_LIMITED_API', '3'))
126126

127127
if platform.system() == 'Darwin':
128128
define_macros.append(('OS_MACOSX', '1'))
@@ -247,7 +247,7 @@ def get_tag(self):
247247

248248
if python.startswith("cp"):
249249
# on CPython, our wheels are abi3 and compatible back to 3.6
250-
return "cp36", "abi3", plat
250+
return "cp32", "abi3", plat
251251

252252
return python, abi, plat
253253

0 commit comments

Comments
 (0)