jeffdaily / parasail-python

Python bindings for the parasail C library.
Other
87 stars 17 forks source link

First go at manylinux builds #43

Closed cjw85 closed 4 years ago

cjw85 commented 4 years ago

As enquired in #11 I've had a quick go at adding many linux wheels to the travis build. The single osx flavoured wheel is still built.

The build runs a quick alignment at the end to check the built wheel works as intended.

I'm not sure how to get the travis pypi deploy mechanism to know about these files so I've changed it to a plain script deploy.

https://travis-ci.org/cjw85/parasail-python

iiSeymour commented 4 years ago

The Linux builds are all passing, the OSX build is failing with python3: command not found.

jeffdaily commented 4 years ago

OSX build is failing because brew update + brew install is failing install python3 (python 3.7) over the existing python3.6. Perhaps at the time this step was introduced, python3 was missing from the image used to perform the OSX build. Chances are it might pass if we just removed the brew update + brew install python3, and instead assume python3 is already there in $PATH.

cjw85 commented 4 years ago

Closed in favour of #48