File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,11 @@ Remember to align the itemized text with the first line of an item within a list
88PLEASE REMEMBER TO CHANGE THE '..main' WITH AN ACTUAL TAG in GITHUB LINK.
99-->
1010
11- ## jaxlib 0.1.75 (Unreleased)
11+ ## jaxlib 0.1.76 (Unreleased)
12+
13+ ## jaxlib 0.1.75 (Dec 7, 2021)
14+ * New features:
15+ * Support for python 3.10.
1216
1317## jax 0.2.26 (Unreleased)
1418* [ GitHub
Original file line number Diff line number Diff line change 1717# reflect the most recent available binaries.
1818# __version__ should be increased after releasing the current version
1919# (i.e. on main, this is always the next version to be released).
20- __version__ = "0.1.75 "
20+ __version__ = "0.1.76 "
Original file line number Diff line number Diff line change 1515from setuptools import setup , find_packages
1616
1717# The following should be updated with each new jaxlib release.
18- _current_jaxlib_version = '0.1.74 '
18+ _current_jaxlib_version = '0.1.75 '
1919_available_cuda_versions = ['11' ]
2020_default_cuda_version = '11'
2121_available_cudnn_versions = ['82' , '805' ]
2222_default_cudnn_version = '82'
23+ _libtpu_version = '0.1.dev20211208'
2324
2425_dct = {}
2526with open ('jax/version.py' ) as f :
2627 exec (f .read (), _dct )
2728__version__ = _dct ['__version__' ]
2829_minimum_jaxlib_version = _dct ['_minimum_jaxlib_version' ]
2930
30- _libtpu_version = '0.1.dev20211018'
31-
3231setup (
3332 name = 'jax' ,
3433 version = __version__ ,
You can’t perform that action at this time.
0 commit comments