Skip to content

Commit

Permalink
MAINT: Test against latest NumPy
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Jun 12, 2024
1 parent 696b834 commit fb501b3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# We test NumPy dev on 3.11
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
requires: ['requirements.txt']
include:
Expand All @@ -37,9 +38,13 @@ jobs:
allow-prereleases: true
- name: Install
run: |
set -eo pipefail
python -m pip install --upgrade pip
python -m pip install -r ${{ matrix.requires }}
python -m pip install -r requirements-dev.txt
if [[ "${{ matrix.python-version }}" == "3.11" ]]; then
python -m pip install --only-binary numpy --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \"numpy>=2.1.0.dev0\"
fi
python -m pip install .
- name: Lint
run: |
Expand Down

0 comments on commit fb501b3

Please sign in to comment.