Skip to content

Commit

Permalink
Don't append d/m ABI flags in Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rdb committed Aug 15, 2019
1 parent 882cd05 commit 7ffbe76
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion wheel/pep425tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ def get_abi_tag():
d = 'd'
if get_flag('WITH_PYMALLOC',
lambda: impl == 'cp',
warn=(impl == 'cp')):
warn=(impl == 'cp' and
sys.version_info < (3, 8))) \
and sys.version_info < (3, 8):
m = 'm'
if get_flag('Py_UNICODE_SIZE',
lambda: sys.maxunicode == 0x10ffff,
Expand Down

0 comments on commit 7ffbe76

Please sign in to comment.