Skip to content

Commit cd592a1

Browse files
authored
Upgrade min SB3 version (#70)
* Upgrade min SB3 version * Fix for newer sphinx version
1 parent bec0038 commit cd592a1

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ jobs:
2929
python -m pip install --upgrade pip
3030
# cpu version of pytorch
3131
pip install torch==1.11+cpu -f https://download.pytorch.org/whl/torch_stable.html
32-
# Install dependencies for docs and tests
33-
pip install stable_baselines3[extra,tests,docs]
3432
# Install master version
35-
pip install git+https://github.com/DLR-RM/stable-baselines3
33+
# and dependencies for docs and tests
34+
pip install git+https://github.com/DLR-RM/stable-baselines3#egg=stable_baselines3[extra,tests,docs]
3635
pip install .
3736
# Use headless version
3837
pip install opencv-python-headless

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def __getattr__(cls, name):
100100
#
101101
# This is also used if you do content translation via gettext catalogs.
102102
# Usually you set "language" from the command line for these cases.
103-
language = None
103+
language = "en"
104104

105105
# List of patterns, relative to source directory, that match files and
106106
# directories to ignore when looking for source files.

docs/misc/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
Changelog
44
==========
55

6-
Release 1.5.1a5 (WIP)
6+
Release 1.5.1a7 (WIP)
77
-------------------------------
88

99
Breaking Changes:
1010
^^^^^^^^^^^^^^^^^
11-
- Upgraded to Stable-Baselines3 >= 1.5.1a5
11+
- Upgraded to Stable-Baselines3 >= 1.5.1a7
1212
- Changed the way policy "aliases" are handled ("MlpPolicy", "CnnPolicy", ...), removing the former
1313
``register_policy`` helper, ``policy_base`` parameter and using ``policy_aliases`` static attributes instead (@Gregwar)
1414
- Renamed ``rollout/exploration rate`` key to ``rollout/exploration_rate`` for QRDQN (to be consistent with SB3 DQN)

sb3_contrib/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.1a5
1+
1.5.1a7

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
packages=[package for package in find_packages() if package.startswith("sb3_contrib")],
6666
package_data={"sb3_contrib": ["py.typed", "version.txt"]},
6767
install_requires=[
68-
"stable_baselines3>=1.5.1a5",
68+
"stable_baselines3>=1.5.1a7",
6969
],
7070
description="Contrib package of Stable Baselines3, experimental code.",
7171
author="Antonin Raffin",

0 commit comments

Comments
 (0)