Skip to content

Commit

Permalink
Fix type annotation + add python 3.9 + citation (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
araffin authored Jul 29, 2021
1 parent ae39e00 commit 36eca8e
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
33 changes: 33 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -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
22 changes: 22 additions & 0 deletions docs/misc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@
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)
-------------------------------

Expand Down
2 changes: 1 addition & 1 deletion sb3_contrib/tqc/tqc.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __init__(
use_sde_at_warmup: bool = False,
tensorboard_log: Optional[str] = None,
create_eval_env: bool = False,
policy_kwargs: Dict[str, Any] = None,
policy_kwargs: Optional[Dict[str, Any]] = None,
verbose: int = 0,
seed: Optional[int] = None,
device: Union[th.device, str] = "auto",
Expand Down
2 changes: 1 addition & 1 deletion sb3_contrib/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.2.0a0

0 comments on commit 36eca8e

Please sign in to comment.