Skip to content

No specific version of numpy #17

No specific version of numpy

No specific version of numpy #17

Workflow file for this run

name: Build
on: [push, pull_request]
env:
MPDAF_VERSION: '3.6'
CIBW_BEFORE_BUILD: 'bash build-deps.sh'
CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-*'
CIBW_ARCHS_LINUX: 'x86_64'
CIBW_BUILD_VERBOSITY: 3
CIBW_ENVIRONMENT_LINUX: '
USEOPENMP=0
CFLAGS="-std=c99"
PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/project/cfitsio-4.4.1/lib/pkgconfig
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/project/cfitsio-4.4.1/lib'
CIBW_ENVIRONMENT_MACOS: 'CFLAGS="-std=c99"'
CIBW_TEST_REQUIRES: 'pytest numpy'
CIBW_TEST_COMMAND: 'pytest $(dirname $(python -c "import mpdaf; print(mpdaf.__file__)"))'
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-10.15]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.12'
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel
- name: Prepare
run: |
wget -O- https://files.pythonhosted.org/packages/source/m/mpdaf/mpdaf-$MPDAF_VERSION.tar.gz | tar xz
cp build-deps.sh mpdaf-$MPDAF_VERSION/
# timer tests in test_util fails on macos for some obscure reason,
# so for now let's remove this file
rm mpdaf-$MPDAF_VERSION/lib/mpdaf/tools/tests/test_util.py
# tests of drs module fail as remote data are unavailable
# so for now let's remove these tests
rm -r mpdaf-$MPDAF_VERSION/lib/mpdaf/drs/tests
- name: Build wheels
run: |
cd mpdaf-$MPDAF_VERSION
python -m cibuildwheel --output-dir ../wheelhouse
- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl