Numpy 2.1+ support (#11) #160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- '*' | |
release: | |
types: | |
- published | |
defaults: | |
run: | |
shell: bash -l -eo pipefail {0} | |
jobs: | |
build: | |
name: ${{ matrix.os }} py${{ matrix.python-version }} numpy${{ matrix.numpy-version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | |
python-version: ['3.9', '3.10', '3.11', '3.12'] | |
numpy-version: ['1.26', '2.0', '2.1'] | |
exclude: | |
- python-version: 3.9 | |
numpy-version: 2.1 | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Setup micromamba | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
miniforge-variant: Mambaforge | |
miniforge-version: latest | |
use-mamba: true | |
python-version: ${{ matrix.python-version }} | |
auto-update-conda: true | |
environment-file: .github/environment.yml | |
- name: Install Numpy ${{ matrix.numpy-version }} | |
shell: bash -l {0} | |
run: | | |
mamba install numpy=${{ matrix.numpy-version }} | |
- name: Install | |
shell: bash -l {0} | |
run: | | |
pip install . -Ccmake.define.WITH_TESTS=ON . | |
- name: Test Unix | |
shell: bash -l {0} | |
if: matrix.os != 'windows-latest' | |
run: | | |
export PYTHONHOME=$CONDA_PREFIX | |
export WHEEL_DIR=$(python -m "scikit_build_core.builder.wheel_tag") | |
export PDAL_DRIVER_PATH=`pwd`/build/$WHEEL_DIR/Release | |
echo $PDAL_DRIVER_PATH | |
ls $PDAL_DRIVER_PATH | |
pdal --drivers | |
$PDAL_DRIVER_PATH/pdal_filters_python_test | |
$PDAL_DRIVER_PATH/pdal_io_numpy_test | |
- name: Test Windows | |
if: matrix.os == 'windows-latest' | |
shell: bash -l {0} | |
env: | |
EXT: ${{ matrix.os == 'windows-latest' && '.exe' || '' }} | |
run: | | |
export PYTHONHOME=$CONDA_PREFIX | |
export WHEEL_DIR=$(python -m "scikit_build_core.builder.wheel_tag") | |
export PDAL_DRIVER_PATH=`pwd`/build/$WHEEL_DIR/Release/Release | |
echo $PDAL_DRIVER_PATH | |
ls $PDAL_DRIVER_PATH | |
pdal --drivers | |
$PDAL_DRIVER_PATH/pdal_filters_python_test$EXT | |
$PDAL_DRIVER_PATH/pdal_io_numpy_test$EXT | |