Skip to content

Commit

Permalink
bail on making np upper bound super flexible
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamman committed Oct 22, 2024
1 parent dc113f6 commit 9aeeaa1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
python-version: ['3.11', '3.12', '3.13']
numpy-version: ['1.25', '2']
numpy-version: ['1.25', '2.1']
dependency-set: ["minimal", "optional"]
os: ["ubuntu-latest"]
include:
Expand All @@ -30,15 +30,15 @@ jobs:
dependency-set: 'optional'
os: 'macos-latest'
- python-version: '3.13'
numpy-version: '2'
numpy-version: '2.1'
dependency-set: 'optional'
os: 'macos-latest'
- python-version: '3.11'
numpy-version: '1.25'
dependency-set: 'optional'
os: 'windows-latest'
- python-version: '3.13'
numpy-version: '2'
numpy-version: '2.1'
dependency-set: 'optional'
os: 'windows-latest'
runs-on: ${{ matrix.os }}
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -135,17 +135,17 @@ features = ["test", "extra"]

[[tool.hatch.envs.test.matrix]]
python = ["3.11", "3.12", "3.13"]
numpy = ["1.25", "2"]
numpy = ["1.25", "2.1"]
version = ["minimal"]

[[tool.hatch.envs.test.matrix]]
python = ["3.11", "3.12", "3.13"]
numpy = ["1.25", "2"]
numpy = ["1.25", "2.1"]
features = ["optional"]

[[tool.hatch.envs.test.matrix]]
python = ["3.11", "3.12", "3.13"]
numpy = ["1.25", "2"]
numpy = ["1.25", "2.1"]
features = ["gpu"]

[tool.hatch.envs.test.scripts]
Expand All @@ -166,7 +166,7 @@ features = ["test", "extra", "gpu"]

[[tool.hatch.envs.gputest.matrix]]
python = ["3.11", "3.12", "3.13"]
numpy = ["1.25", "2"]
numpy = ["1.25", "2.1"]
version = ["minimal"]

[tool.hatch.envs.gputest.scripts]
Expand Down

0 comments on commit 9aeeaa1

Please sign in to comment.