-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove 'm' from python path for 3.8 and up #262
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Maybe add Python 3.8 .travis entry?
manylinux_utils.sh
Outdated
@@ -21,6 +21,7 @@ function cpython_path { | |||
local py_ver="${1:-2.7}" | |||
local u_width="${2:-${UNICODE_WIDTH}}" | |||
local u_suff=u | |||
local m=m |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
m
is a little too short. OK to change to abi_suff
? Maybe move line above local u_suff=u
to reflect ordering in output string?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
manylinux_utils.sh
Outdated
@@ -31,8 +32,12 @@ function cpython_path { | |||
echo "Incorrect u_width value $u_width" | |||
exit 1 | |||
fi | |||
# Python 3.8 and up no longer uses the PYMALLOC 'm' suffix |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add comment reference to pypa/wheel#303 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
added 3.8 travis runs, I think they should specify manylinux2010 for now until pypa/manylinux#360 goes in |
OK - thanks - seems reasonable. |
related to gh-261
CPython no longer adds 'm' to the abi tag after pypa/wheel#303 for python 3.8 and up