RalfG / python-wheels-manylinux-build

GitHub Action to build Python manylinux wheels
https://github.com/marketplace/actions/python-wheels-manylinux-build
Apache License 2.0
92 stars 44 forks source link

compatible with pybind11? #15

Closed xiuliren closed 4 years ago

xiuliren commented 4 years ago

Hi, thanks for this great package. I used pybind11 rather than Cython. It seems that this package requires Cython. is there a way to work around?

ERROR: Directory '/github/workspace/' is not installable. Neither 'setup.py' nor 'pyproject.toml' found.
+ echo 'Building wheels failed.'
Building wheels failed.
+ exit 1
RalfG commented 4 years ago

Hi! As long as it is a Python package (build with setuptools), it should work, regardless of Cython or pybind. It seems like the build script cannot find a setup.py or pyproject.toml file. How do you build the package locally?

xiuliren commented 4 years ago

thank you. I use python setup.py install to install it. It seems an issue of finding setup.py file. It probably is not an issue of this package.