Skip to content

Commit

Permalink
test: add numpy<2 and >=2 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
glichtner committed Oct 2, 2024
1 parent b8227cc commit 04ed61f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 18 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,39 @@ on:
- main
pull_request:


jobs:
test:
name: test ${{ matrix.python-version }} - ${{ matrix.os }}
name: test py==${{ matrix.python-version }} - numpy==${{ matrix.numpy-version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
numpy-version: ["1.26", "2.1"]
exclude:
- os: macos-latest
python-version: "3.7"

- python-version: "3.7"
numpy-version: "2.1"
- python-version: "3.8"
numpy-version: "2.1"

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install tox and dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test with tox
- name: Run tests with numpy ${{ matrix.numpy-version }}
env:
NUMPY_VERSION: ${{ matrix.numpy-version }} # Pass numpy version to tox
run: |
tox -e py
23 changes: 9 additions & 14 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
[tox]
requires =
numpy
tqdm
envlist = py

[testenv]
deps=
-rrequirements.txt
tifffile
pytest
setuptools
numpy

commands=
pip install -e .
python setup.py install
pytest {posargs:}
deps =
pytest
tifffile
numpy=={env:NUMPY_VERSION}
-rrequirements.txt
commands =
pip install -e .
pytest {posargs:}

0 comments on commit 04ed61f

Please sign in to comment.