From c9bd045d5c4672f65d9d8524f11bb4b36ab08db1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Quentin=20Gallou=C3=A9dec?= <45557362+qgallouedec@users.noreply.github.com> Date: Fri, 23 Dec 2022 00:54:35 +0100 Subject: [PATCH] Add support for python3.10 (#129) Co-authored-by: Antonin RAFFIN --- .github/workflows/ci.yml | 2 +- docs/misc/changelog.rst | 1 + setup.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd01c4e..e4b7958 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: ["3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v3 diff --git a/docs/misc/changelog.rst b/docs/misc/changelog.rst index 0efe1b9..4c8c17b 100644 --- a/docs/misc/changelog.rst +++ b/docs/misc/changelog.rst @@ -16,6 +16,7 @@ Breaking Changes: New Features: ^^^^^^^^^^^^^ - Introduced mypy type checking +- Added support for Python 3.10 - Added ``with_bias`` parameter to ``ARSPolicy`` - Added option to have non-shared features extractor between actor and critic in on-policy algorithms (@AlexPasqua) - Features extractors now properly support unnormalized image-like observations (3D tensor) diff --git a/setup.py b/setup.py index 2abcfd9..c332330 100644 --- a/setup.py +++ b/setup.py @@ -84,6 +84,7 @@ setup( "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ], )