Skip to content

Commit 6e5be02

Browse files
authored
MAINT: try conditional versioning (#37)
* MAINT: try conditional versioning * BUG: fix version specification
1 parent 9504f6c commit 6e5be02

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
python-version: ["3.10", "3.11", "3.12"]
25+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2626

2727
steps:
2828
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@ dynamic = ["version"]
2828
[project.optional-dependencies]
2929
test = [
3030
"pytest-cov",
31-
"jax>=0.4.34,<0.7", # quax is not currently compatible with jax 0.7 (https://github.com/patrick-kidger/quax/issues/71)
31+
'jax>=0.4.34,<0.7; python_version>="3.11"', # quax is not currently compatible with jax 0.7 (https://github.com/patrick-kidger/quax/issues/71)
32+
'jax>=0.4.34,<0.6; python_version<"3.11"', # quaxed has dropped 3.10
3233
"unxt",
3334
]
3435
jax = [
35-
"jax>=0.4.34",
36+
'jax>=0.4.34; python_version>="3.11"',
37+
'jax>=0.4.34,<0.6; python_version<"3.11"', # quaxed has dropped 3.10
3638
"unxt",
3739
]
3840

0 commit comments

Comments
 (0)