From 85c40ad91730c70efd6cb044b9e0aa10a853ad78 Mon Sep 17 00:00:00 2001 From: Colin Gaffney Date: Mon, 30 Jan 2023 11:48:02 -0800 Subject: [PATCH] Remove support for Python 3.7. This is because JAX no longer supports this version. PiperOrigin-RevId: 505756362 --- CHANGELOG.md | 1 + orbax/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e096c50..ae0dab8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Refactored higher-level utils in checkpoint_utils, which provides user-convenience functions. - Guard option to create top-level directory behind `create` option. +- Remove support for Python 3.7. ## [0.1.0] - 2022-1-04 diff --git a/orbax/__init__.py b/orbax/__init__.py index 3b842e77..94dee905 100644 --- a/orbax/__init__.py +++ b/orbax/__init__.py @@ -15,4 +15,4 @@ """Orbax API.""" # A new PyPI release will be pushed everytime `__version__` is increased. -__version__ = '0.1.0' +__version__ = '0.1.1' diff --git a/pyproject.toml b/pyproject.toml index b3d43839..4ac369cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = 'orbax' description='Orbax' readme = 'README.md' license = {file = 'LICENSE'} -requires-python = '>=3.7' +requires-python = '>=3.8' authors = [{name = 'Orbax Authors', email='orbax-dev@google.com'}] classifiers=[ 'Development Status :: 4 - Beta',