Skip to content

Commit 1919e90

Browse files
committed
bump jax versions to 0.4.*
1 parent 67e6280 commit 1919e90

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
- `ModeData.dispersion` and `ModeSolverData.dispersion` are calculated together with the group index.
1010
- String matching feature `contains_str` to `assert_log_level` testing utility.
1111

12+
### Changed
13+
- `jax` and `jaxlib` versions bumped to `0.4.*`.
14+
1215
## [2.5.0] - 2023-12-13
1316

1417
### Added

requirements/jax.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
-r core.txt
44

55
# regular case (linux, macos)
6-
jaxlib>=0.3.14,<=0.4.14; platform_system != "Windows"
7-
jax[cpu]>=0.3.14,<=0.4.14; platform_system != "Windows"
6+
jaxlib>=0.3.14,==0.4.*; platform_system != "Windows"
7+
jax[cpu]>=0.3.14,==0.4.*; platform_system != "Windows"
88

99

1010
# we downgrade to 0.3 for windows users because the only binaries for windows are 0.3 currently.
1111
jaxlib==0.3.14; platform_system == "Windows" and python_version < "3.9"
1212
jax[cpu]==0.3.14; platform_system == "Windows" and python_version < "3.9"
1313

14-
# windows users running python > 3.9 can install same jax version as unix
14+
# windows users running python > 3.9 must use older version for now
1515
jaxlib>=0.3.14,<=0.4.14; platform_system == "Windows" and python_version >= "3.9"
1616
jax[cpu]>=0.3.14,<=0.4.14; platform_system == "Windows" and python_version >= "3.9"

0 commit comments

Comments
 (0)