-
Notifications
You must be signed in to change notification settings - Fork 20
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
[ENH]: Multiwheel for Python #140
Comments
@mpmdean thx for feedback I used an adapted version of your script and I am wondering if I miss something, because #!/bin/bash
apt-get install -y \
gfortran \
openmpi-bin \
openmpi-doc \
libopenmpi-dev \
libopenblas-dev \
libarpack2-dev \
libparpack2-dev
# These packages are installed in the base environment but may be older
# versions. Explicitly upgrade them because they often create
# installation problems if out of date.
python -m pip install --upgrade pip setuptools numpy
# Compile Fortran code
make -C src
# Build Python interface
python setup.py build_ext --inplace
python setup.py build_ext
# Install this package and the packages listed in requirements.txt.
pip install .
# Install extra requirements for running tests and building docs.
pip install -r requirements-dev.txt
# List the depencencies
pip list
|
I'm out of my depth regarding the exact issue of what is going wrong. The full dockerfile(s) is specified quite extensively in terms of versions and consistently compiling everything with the same comiler. |
@mpmdean thx I will take a closer look! Sorry, that was actually misslearding because I refer to sh-script, but maybe it's the key |
I would like to submit a PR for PyPi multi-wheel via https://cibuildwheel.readthedocs.io/en/stable/. However, I have the problem that
cannot be found. In case that's something of interest, let me know.
Here is the forked branch -> Anselmoo#1
The text was updated successfully, but these errors were encountered: