Skip to content

Commit

Permalink
Updates version to v0.0.10
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 570052193
  • Loading branch information
andsteing authored and copybara-github committed Oct 2, 2023
1 parent ba71bff commit 69845bd
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,17 @@ This will be the last release supporting Python 3.6.
- Fixes various issues with `clu.metrics`.

This will be the last release supporting Python 3.7.

## v0.0.9

- Fix pytype failures related to teaching pytype about NumPy scalar types.
- Fix a couple of docstring typos.
- Updates README and clu_synposis.ipynb

Last release before dropping support for Python 3.8 and 3.9

## v0.0.10

- `clu.parameter_overview` now supports JAX global arrays.
- Various small fixes in `clu.metrics` module.
- Removed some tensorflow dependencies.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,15 @@
pip intall -e . .[tests]
"""

import sys

from setuptools import find_packages
from setuptools import setup


if sys.version_info < (3, 10):
sys.exit("Python < 3.10 not supported anymore!")

tests_require = [
"pytest",
"tensorflow",
Expand All @@ -32,7 +38,7 @@

setup(
name="clu",
version="0.0.9",
version="0.0.10",
description="Set of libraries for ML training loops in JAX.",
author="Common Loop Utils Authors",
author_email="no-reply@google.com",
Expand Down

0 comments on commit 69845bd

Please sign in to comment.