jeffdaily / parasail-python

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

Fix macos wheel generation in CI #67

Closed JacobHayes closed 1 year ago

JacobHayes commented 1 year ago

macos wheels were removed before the 1.3 release because of failing builds as reported in https://github.com/jeffdaily/parasail-python/issues/65, which turns out to be caused by the same auto-installed m4 mac issues as documented in https://github.com/jeffdaily/parasail-python/issues/24 (SIGABRT). However, setup.py only installs m4 by hand because automake was missing, so this just installs automake first to bypass the setup.py installations.

Here's a working build.

Closes #65.