Fix type annotation + add python 3.9 + citation (#37)
This commit is contained in:
parent
ae39e00c44
commit
36eca8ee79
|
|
@ -16,7 +16,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.6, 3.7, 3.8]
|
python-version: [3.6, 3.7, 3.8, 3.9]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,33 @@
|
||||||
|
cff-version: 1.2.0
|
||||||
|
message: "If you use this software, please cite it as below."
|
||||||
|
authors:
|
||||||
|
-
|
||||||
|
family-names: Raffin
|
||||||
|
given-names: Antonin
|
||||||
|
orcid: "https://orcid.org/0000-0001-6036-6950"
|
||||||
|
-
|
||||||
|
family-names: Hill
|
||||||
|
given-names: Ashley
|
||||||
|
-
|
||||||
|
family-names: Enerstus
|
||||||
|
given-names: Maximilian
|
||||||
|
-
|
||||||
|
family-names: Gleave
|
||||||
|
given-names: Adam
|
||||||
|
orcid: "https://orcid.org/0000-0002-3467-528X"
|
||||||
|
-
|
||||||
|
family-names: Kanervisto
|
||||||
|
given-names: Anssi
|
||||||
|
orcid: "https://orcid.org/0000-0002-7479-4574"
|
||||||
|
-
|
||||||
|
family-names: Dormann
|
||||||
|
given-names: Noah
|
||||||
|
|
||||||
|
title: "Stable Baselines3"
|
||||||
|
abbreviation: SB3
|
||||||
|
url: "https://github.com/DLR-RM/stable-baselines3"
|
||||||
|
repository-code: "https://github.com/DLR-RM/stable-baselines3"
|
||||||
|
version: 1.1.0
|
||||||
|
date-released: 2020-05-05
|
||||||
|
license: MIT
|
||||||
|
# doi: # TODO when paper is released
|
||||||
|
|
@ -3,6 +3,28 @@
|
||||||
Changelog
|
Changelog
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
|
||||||
|
Release 1.2.0a0 (WIP)
|
||||||
|
-------------------------------
|
||||||
|
|
||||||
|
Breaking Changes:
|
||||||
|
^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
Bug Fixes:
|
||||||
|
^^^^^^^^^^
|
||||||
|
|
||||||
|
Deprecations:
|
||||||
|
^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
Others:
|
||||||
|
^^^^^^^
|
||||||
|
- Fixed type annotation
|
||||||
|
- Added python 3.9 to CI
|
||||||
|
|
||||||
|
Documentation:
|
||||||
|
^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
|
||||||
Release 1.1.0 (2021-07-01)
|
Release 1.1.0 (2021-07-01)
|
||||||
-------------------------------
|
-------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -89,7 +89,7 @@ class TQC(OffPolicyAlgorithm):
|
||||||
use_sde_at_warmup: bool = False,
|
use_sde_at_warmup: bool = False,
|
||||||
tensorboard_log: Optional[str] = None,
|
tensorboard_log: Optional[str] = None,
|
||||||
create_eval_env: bool = False,
|
create_eval_env: bool = False,
|
||||||
policy_kwargs: Dict[str, Any] = None,
|
policy_kwargs: Optional[Dict[str, Any]] = None,
|
||||||
verbose: int = 0,
|
verbose: int = 0,
|
||||||
seed: Optional[int] = None,
|
seed: Optional[int] = None,
|
||||||
device: Union[th.device, str] = "auto",
|
device: Union[th.device, str] = "auto",
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
1.1.0
|
1.2.0a0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue