Update README, etc. for jaxlib 0.1.67 release

This commit is contained in:
Skye Wanderman-Milne 2021-05-17 17:48:46 -07:00
parent 58a5ef7912
commit 63dbb99a66
3 changed files with 4 additions and 4 deletions

View File

@ -422,7 +422,7 @@ Next, run
```bash
pip install --upgrade pip
pip install --upgrade jax jaxlib==0.1.66+cuda111 -f https://storage.googleapis.com/jax-releases/jax_releases.html
pip install --upgrade jax jaxlib==0.1.67+cuda111 -f https://storage.googleapis.com/jax-releases/jax_releases.html
```
The jaxlib version must correspond to the version of the existing CUDA

View File

@ -17,4 +17,4 @@
# reflect the most recent available binaries.
# __version__ should be increased after releasing the current version
# (i.e. on master, this is always the next version to be released).
__version__ = "0.1.67"
__version__ = "0.1.68"

View File

@ -15,8 +15,8 @@
from setuptools import setup, find_packages
# The following should be updated with each new jaxlib release.
_current_jaxlib_version = '0.1.66'
_available_cuda_versions = ['101', '102', '110', '111', '112']
_current_jaxlib_version = '0.1.67'
_available_cuda_versions = ['101', '102', '110', '111']
_dct = {}
with open('jax/version.py') as f: