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", ], )