From 85ee65996fbfa1b421822c75eef751484f240622 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Jun 2022 01:04:36 +0000 Subject: [PATCH 1/3] Bump numpy from 1.21.4 to 1.22.0 Bumps [numpy](https://github.com/numpy/numpy) from 1.21.4 to 1.22.0. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/HOWTO_RELEASE.rst) - [Commits](https://github.com/numpy/numpy/compare/v1.21.4...v1.22.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index dfaf2b1..95f6c6f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ absl-py==1.0.0 dm-tree==0.1.6 -numpy==1.21.4 +numpy==1.22.0 pytest==6.2.5 From ea2a17bed7a60c82f637891c53f3a37f70d91486 Mon Sep 17 00:00:00 2001 From: Alistair Muldal Date: Tue, 20 Dec 2022 16:13:26 -0800 Subject: [PATCH 2/3] Bump the minor version; new version is 1.6 PiperOrigin-RevId: 496776510 Change-Id: I9ee3924f3248b09899a65b7a8aa02850e00d7bda --- CHANGELOG.md | 7 ++++++- dm_env/_metadata.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a62bad..7e701dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All significant changes to this project will be documented here. ## [Unreleased] +## [1.6] + +Release date: 2022-12-21 + * Add support for Python 3.10. ## [1.5] @@ -58,7 +62,8 @@ Release date: 2019-07-18 * Initial release. -[Unreleased]: https://github.com/deepmind/dm_env/compare/v1.5...HEAD +[Unreleased]: https://github.com/deepmind/dm_env/compare/v1.6...HEAD +[1.6]: https://github.com/deepmind/dm_env/compare/v1.5...v1.6 [1.5]: https://github.com/deepmind/dm_env/compare/v1.4...v1.5 [1.4]: https://github.com/deepmind/dm_env/compare/v1.3...v1.4 [1.3]: https://github.com/deepmind/dm_env/compare/v1.2...v1.3 diff --git a/dm_env/_metadata.py b/dm_env/_metadata.py index a0d23fd..5ce4941 100644 --- a/dm_env/_metadata.py +++ b/dm_env/_metadata.py @@ -19,4 +19,4 @@ a time when dm_env's dependencies may not have been installed yet. """ -__version__ = '1.5' # https://www.python.org/dev/peps/pep-0440/ +__version__ = '1.6' # https://www.python.org/dev/peps/pep-0440/ From 91b46797fea731f80eab8cd2c8352a0674141d89 Mon Sep 17 00:00:00 2001 From: Alistair Muldal Date: Thu, 22 Dec 2022 12:37:09 -0800 Subject: [PATCH 3/3] Revert to numpy 1.21.6 for Python versions < 3.7 1.22.0 only supports Python 3.8 or newer: https://numpy.org/doc/stable/release/1.22.0-notes.html#python-3-7-is-no-longer-supported PiperOrigin-RevId: 497220130 Change-Id: I3549aedf940515762cee22edfc4eb0d6f8110072 --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 95f6c6f..c5a660b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ absl-py==1.0.0 dm-tree==0.1.6 -numpy==1.22.0 +numpy==1.21.6; python_version < '3.8' +numpy==1.22.0; python_version >= '3.8' pytest==6.2.5