Update README, etc. for jaxlib 0.1.63 release

This commit is contained in:
Skye Wanderman-Milne 2021-03-17 10:14:52 -07:00
parent 5a0fc96212
commit 757247b791
4 changed files with 6 additions and 4 deletions

View File

@ -16,7 +16,9 @@ PLEASE REMEMBER TO CHANGE THE '..master' WITH AN ACTUAL TAG in GITHUB LINK.
* Breaking changes:
* The minimum jaxlib version is now 0.1.62.
## jaxlib 0.1.63 (Unreleased)
## jaxlib 0.1.64 (unreleased)
## jaxlib 0.1.63 (March 17 2021)
## jax 0.2.10 (March 5 2021)

View File

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

View File

@ -14,4 +14,4 @@
# This should be increased after releasing the current version (i.e. this
# is always the next version to be released).
__version__ = "0.1.63"
__version__ = "0.1.64"

View File

@ -16,7 +16,7 @@ from setuptools import setup, find_packages
__version__ = None
_minimum_jaxlib_version = '0.1.62'
_current_jaxlib_version = '0.1.62'
_current_jaxlib_version = '0.1.63'
_available_cuda_versions = ['101', '102', '110', '111', '112']
with open('jax/version.py') as f: