Skip to content

Commit 20ead61

Browse files
committed
fix: fix version tag of abi3 wheels
1 parent 4b0b745 commit 20ead61

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
@@ -789,8 +789,8 @@ class bdist_wheel_abi3(bdist_wheel):
789789
def get_tag(self):
790790
python, abi, plat = super().get_tag()
791791
if python.startswith("cp"):
792-
# on CPython, our wheels are abi3 and compatible back to 3.7
793-
return "cp37", "abi3", plat
792+
# on CPython, our wheels are abi3 and compatible back to 3.9
793+
return "cp39", "abi3", plat
794794

795795
return python, abi, plat
796796
else:

0 commit comments

Comments
 (0)