Upgrade versions after jaxlib release

PiperOrigin-RevId: 389753047
This commit is contained in:
Yash Katariya 2021-08-09 16:37:15 -07:00 committed by jax authors
parent 23f91d6909
commit bf967d88d8
3 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK.
need to use a dimension size in array computation, e.g., `jnp.mean`.
({jax-issue}`#7317`)
## jaxlib 0.1.70 (unreleased)
## jaxlib 0.1.70 (Aug 9, 2021)
* Breaking changes:
* Support for Python 3.6 has been dropped, per the
[deprecation policy](https://jax.readthedocs.io/en/latest/deprecation.html).

View File

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

View File

@ -15,7 +15,7 @@
from setuptools import setup, find_packages
# The following should be updated with each new jaxlib release.
_current_jaxlib_version = '0.1.69'
_current_jaxlib_version = '0.1.70'
_available_cuda_versions = ['101', '102', '110', '111']
_dct = {}
@ -24,7 +24,7 @@ with open('jax/version.py') as f:
__version__ = _dct['__version__']
_minimum_jaxlib_version = _dct['_minimum_jaxlib_version']
_libtpu_version = '0.1.dev20210709'
_libtpu_version = '0.1.dev20210809'
setup(
name='jax',