Skip to content

Commit 62086f3

Browse files
committed
apply suggestions from Ralf
1 parent 62fa64b commit 62086f3

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

setuptools/command/bdist_wheel.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ def stable_abi_tag(impl_name, impl_version):
140140
# but in practice these builds need cp315 or newer
141141
abi_tag = "abi3.abi3t"
142142
else:
143-
# This is wrong on on CPython 3.1, 3.0 ¯\_(ツ)_/¯
144143
abi_tag = "abi3"
145144
return abi_tag
146145

setuptools/tests/test_build_ext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
IS_PYPY = '__pypy__' in sys.builtin_module_names
2323
# from a Mac running Python 3.14
24-
ABI3_EXT_SUFFIXES = ['cpython-314-darwin.so', 'abi3.so', 'so']
24+
ABI3_EXT_SUFFIXES = ['.cpython-314-darwin.so', '.abi3.so', '.so']
2525
# from a Mac running Python 3.15t
2626
ABI3T_EXT_SUFFIXES = ['.cpython-315t-darwin.so', '.abi3t.so', '.so']
2727

0 commit comments

Comments
 (0)