Add support for python3.10 (#129)
Co-authored-by: Antonin RAFFIN <antonin.raffin@ensta.org>
This commit is contained in:
parent
9cf8b5076f
commit
c9bd045d5c
|
|
@ -19,7 +19,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.7, 3.8, 3.9]
|
python-version: ["3.7", "3.8", "3.9", "3.10"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@ Breaking Changes:
|
||||||
New Features:
|
New Features:
|
||||||
^^^^^^^^^^^^^
|
^^^^^^^^^^^^^
|
||||||
- Introduced mypy type checking
|
- Introduced mypy type checking
|
||||||
|
- Added support for Python 3.10
|
||||||
- Added ``with_bias`` parameter to ``ARSPolicy``
|
- Added ``with_bias`` parameter to ``ARSPolicy``
|
||||||
- Added option to have non-shared features extractor between actor and critic in on-policy algorithms (@AlexPasqua)
|
- 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)
|
- Features extractors now properly support unnormalized image-like observations (3D tensor)
|
||||||
|
|
|
||||||
1
setup.py
1
setup.py
|
|
@ -84,6 +84,7 @@ setup(
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
|
"Programming Language :: Python :: 3.10",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue