Script to build wheels in manylinux docker image#1
Open
NotSqrt wants to merge 1 commit intoconhealth:developfrom
Open
Script to build wheels in manylinux docker image#1NotSqrt wants to merge 1 commit intoconhealth:developfrom
NotSqrt wants to merge 1 commit intoconhealth:developfrom
Conversation
Contributor
|
Glad that you were able make use of it. :-) Continuous integration and publishing on PyPi would be nice, but we're currently quite busy with other topics and as this project also isn't widely used it has a low priority for us. But if you want, feel free to contribute a PR adding such functionality. Some kind of tests would also be a welcome addition. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
cf https://github.com/pypa/python-manylinux-demo/blob/master/.travis.yml on how to use this on Travis.
Basically, you need to run
sudo docker run --rm -v $(pwd):/io quay.io/pypa/manylinux1_x86_64:latest bash /io/build-manylinux-wheels.sh, and wheels will be created in awheelhousefolder for py27, py34, py35, py36.I guess the best would be to be able to publish releases and wheels to https://pypi.python.org/pypi/tdb, but an alternative would be to rename this package to something like tdb-manypython or python-tdb.
Anyway, your project helped me to keep using py35/py36 and not go back to http://packages.ubuntu.com/xenial/python-tdb built only for py27.
Thanks !