Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 24 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,27 @@ jobs:
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
numpy-version: [ "1.19", "1.20", "1.21", "1.22", "1.23", "1.24" ]
numpy-version: [ "1.20", "1.21", "1.22", "1.23", "1.24", "1.25", "1.26" ]
exclude:
- python-version: "3.10"
numpy-version: "1.19"
- python-version: "3.8"
numpy-version: "1.25"
os: ubuntu-latest
- python-version: "3.8"
numpy-version: "1.26"
os: ubuntu-latest
- python-version: "3.10"
numpy-version: "1.20"
os: ubuntu-latest
- python-version: "3.11"
numpy-version: "1.19"
os: ubuntu-latest
- python-version: "3.11"
numpy-version: "1.20"
os: ubuntu-latest
- python-version: "3.11"
numpy-version: "1.21"
os: ubuntu-latest
include:
- python-version: "3.12"
numpy-version: "1.26"
os: ubuntu-latest
steps:
- uses: actions/checkout@v2

Expand All @@ -55,6 +59,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U setuptools
python -m pip install -U wheel
python -m pip install -U pytest
python -m pip install "numpy==${{ matrix.numpy-version }}"
Expand All @@ -75,7 +80,18 @@ jobs:
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
numpy-version: [ "1.22", "1.23", "1.24" ]
numpy-version: [ "1.22", "1.23", "1.24", "1.25", "1.26" ]
exclude:
- python-version: "3.8"
numpy-version: "1.25"
os: ubuntu-latest
- python-version: "3.8"
numpy-version: "1.26"
os: ubuntu-latest
include:
- python-version: "3.12"
numpy-version: "1.26"
os: ubuntu-latest
steps:
- uses: actions/checkout@v2

Expand All @@ -101,6 +117,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U setuptools
python -m pip install -U wheel
python -m pip install "numpy==${{ matrix.numpy-version }}"
python -m pip install -U mypy
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [
"Topic :: Scientific/Engineering"
]
dependencies = [
"numpy>=1.19"
"numpy>=1.20"
]
dynamic = ["version"]

Expand Down