File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -94,3 +94,17 @@ This will be the last release supporting Python 3.6.
9494- Fixes various issues with ` clu.metrics ` .
9595
9696This will be the last release supporting Python 3.7.
97+
98+ ## v0.0.9
99+
100+ - Fix pytype failures related to teaching pytype about NumPy scalar types.
101+ - Fix a couple of docstring typos.
102+ - Updates README and clu_synposis.ipynb
103+
104+ Last release before dropping support for Python 3.8 and 3.9
105+
106+ ## v0.0.10
107+
108+ - ` clu.parameter_overview ` now supports JAX global arrays.
109+ - Various small fixes in ` clu.metrics ` module.
110+ - Removed some tensorflow dependencies.
Original file line number Diff line number Diff line change 1919 pip intall -e . .[tests]
2020"""
2121
22+ import sys
23+
2224from setuptools import find_packages
2325from setuptools import setup
2426
27+
28+ if sys .version_info < (3 , 10 ):
29+ sys .exit ("Python < 3.10 not supported anymore!" )
30+
2531tests_require = [
2632 "pytest" ,
2733 "tensorflow" ,
3238
3339setup (
3440 name = "clu" ,
35- version = "0.0.9 " ,
41+ version = "0.0.10 " ,
3642 description = "Set of libraries for ML training loops in JAX." ,
3743 author = "Common Loop Utils Authors" ,
3844 author_email = "no-reply@google.com" ,
You can’t perform that action at this time.
0 commit comments