-
Notifications
You must be signed in to change notification settings - Fork 999
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
Only upload audited wheels / use manylinux2014 #1086
Conversation
253717e
to
2df38ea
Compare
@@ -21,19 +21,19 @@ jobs: | |||
run: | | |||
python -m pip install --upgrade pip setuptools wheel twine | |||
- name: Build manylinux Python wheels | |||
uses: RalfG/python-wheels-manylinux-build@v0.3-manylinux1_x86_64 | |||
uses: RalfG/python-wheels-manylinux-build@v0.3.1-manylinux2014_x86_64 | |||
with: | |||
python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38' |
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.
Is it correct that 36 and 37 have an m but 38 does not?
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.
Indeed it is. See https://docs.python.org/3.8/whatsnew/3.8.html#build-and-c-api-changes
Default sys.abiflags became an empty string: the m flag for pymalloc became useless (builds with and without pymalloc are ABI compatible) and so has been removed.
Okay great - I'll merge this then |
We should be able to upload the wheels to PyPI by releasing a new rc. |
Yep. Go ahead and do that when you have a chance. |
No description provided.