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 179c266
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 19 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,33 @@ on:
- main
pull_request:


jobs:
test:
name: test ${{ matrix.python-version }} - ${{ matrix.os }}
name: test ${{ matrix.python-version }} - ${{ 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: ["<2", ">=2"]
exclude:
- os: macos-latest
python-version: "3.7"


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 }}
run: |
tox -e py
TOX_ENV=numpy${{ matrix.numpy-version }} tox -e py
24 changes: 10 additions & 14 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
[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<2: numpy<2
numpy>=2: numpy>=2
-rrequirements.txt
commands =
pip install -e .
pytest {posargs:}

0 comments on commit 179c266

Please sign in to comment.