Skip to content

Commit

Permalink
build: Update lower bound on jax to v0.2.10 (#1666)
Browse files Browse the repository at this point in the history
* Update the lower bound of the supported JAX versions to jax v0.2.10 and jaxlib v0.1.60
   - jax v0.2.10 requires jaxlib v0.1.60+
* Set only lower bounds for jax and jaxlib in 'jax' extra
  • Loading branch information
matthewfeickert authored Oct 23, 2021
1 parent 6ade6d4 commit c3d0acb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lower-bound-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ torch==1.10.0
# Use Google Cloud Storage buckets for long term wheel support
# c.f. https://github.com/google/jax/discussions/7608#discussioncomment-1269342
--find-links https://storage.googleapis.com/jax-releases/jax_releases.html
jax==0.2.8
jaxlib==0.1.58
jax==0.2.10
jaxlib==0.1.60 # jax v0.2.10 requires jaxlib>=0.1.60
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
'tensorflow-probability~=0.11',
],
'torch': ['torch~=1.10'],
'jax': ['jax~=0.2.8', 'jaxlib~=0.1.58,!=0.1.68'], # c.f. Issue 1501
'jax': ['jax>=0.2.10', 'jaxlib>=0.1.60,!=0.1.68'], # c.f. Issue 1501
'xmlio': ['uproot>=4.1.1'],
'minuit': ['iminuit>=2.4'],
}
Expand Down

0 comments on commit c3d0acb

Please sign in to comment.