diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eb0e69e..101e67b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,10 +29,9 @@ jobs: python -m pip install --upgrade pip # cpu version of pytorch pip install torch==1.11+cpu -f https://download.pytorch.org/whl/torch_stable.html - # Install dependencies for docs and tests - pip install stable_baselines3[extra,tests,docs] # Install master version - pip install git+https://github.com/DLR-RM/stable-baselines3 + # and dependencies for docs and tests + pip install git+https://github.com/DLR-RM/stable-baselines3#egg=stable_baselines3[extra,tests,docs] pip install . # Use headless version pip install opencv-python-headless diff --git a/docs/conf.py b/docs/conf.py index 4521619..85c9c16 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -100,7 +100,7 @@ master_doc = "index" # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = "en" # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. diff --git a/docs/misc/changelog.rst b/docs/misc/changelog.rst index 1569ceb..3de9b46 100644 --- a/docs/misc/changelog.rst +++ b/docs/misc/changelog.rst @@ -3,12 +3,12 @@ Changelog ========== -Release 1.5.1a5 (WIP) +Release 1.5.1a7 (WIP) ------------------------------- Breaking Changes: ^^^^^^^^^^^^^^^^^ -- Upgraded to Stable-Baselines3 >= 1.5.1a5 +- Upgraded to Stable-Baselines3 >= 1.5.1a7 - Changed the way policy "aliases" are handled ("MlpPolicy", "CnnPolicy", ...), removing the former ``register_policy`` helper, ``policy_base`` parameter and using ``policy_aliases`` static attributes instead (@Gregwar) - Renamed ``rollout/exploration rate`` key to ``rollout/exploration_rate`` for QRDQN (to be consistent with SB3 DQN) diff --git a/sb3_contrib/version.txt b/sb3_contrib/version.txt index bccb8c6..e39732b 100644 --- a/sb3_contrib/version.txt +++ b/sb3_contrib/version.txt @@ -1 +1 @@ -1.5.1a5 +1.5.1a7 diff --git a/setup.py b/setup.py index 5aaa498..aede425 100644 --- a/setup.py +++ b/setup.py @@ -65,7 +65,7 @@ setup( packages=[package for package in find_packages() if package.startswith("sb3_contrib")], package_data={"sb3_contrib": ["py.typed", "version.txt"]}, install_requires=[ - "stable_baselines3>=1.5.1a5", + "stable_baselines3>=1.5.1a7", ], description="Contrib package of Stable Baselines3, experimental code.", author="Antonin Raffin",