Skip to content

Commit

Permalink
Update to explicit jax version requirements for 0.11 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
csuter committed Sep 28, 2020
1 parent a134096 commit db26e9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def has_ext_modules(self):
],
keywords='tensorflow probability statistics bayesian machine learning',
extras_require={ # e.g. `pip install tfp-nightly[jax]`
'jax': ['jax', 'jaxlib'],
'jax': ['jax==0.1.74', 'jaxlib==0.1.52'],
'tfds': [TFDS_PACKAGE],
}
)
2 changes: 1 addition & 1 deletion testing/install_test_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ install_python_packages() {
python -m pip install $PIP_FLAGS $TF_NIGHTLY_PACKAGE==$TF_VERSION_STR

# For the JAX backend.
python -m pip install jax jaxlib
python -m pip install jax==0.1.74 jaxlib==0.1.52

# The following unofficial dependencies are used only by tests.
# TODO(b/148685448): Unpin Hypothesis and coverage versions.
Expand Down

0 comments on commit db26e9a

Please sign in to comment.