Skip to content

Commit 69845bd

Browse files
andsteingcopybara-github
authored andcommitted
Updates version to v0.0.10
PiperOrigin-RevId: 570052193
1 parent ba71bff commit 69845bd

2 files changed

Lines changed: 21 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,17 @@ This will be the last release supporting Python 3.6.
9494
- Fixes various issues with `clu.metrics`.
9595

9696
This 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.

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,15 @@
1919
pip intall -e . .[tests]
2020
"""
2121

22+
import sys
23+
2224
from setuptools import find_packages
2325
from setuptools import setup
2426

27+
28+
if sys.version_info < (3, 10):
29+
sys.exit("Python < 3.10 not supported anymore!")
30+
2531
tests_require = [
2632
"pytest",
2733
"tensorflow",
@@ -32,7 +38,7 @@
3238

3339
setup(
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",

0 commit comments

Comments
 (0)