Update version and fix #188 (#190)

This commit is contained in:
Antonin RAFFIN 2023-06-07 16:51:42 +02:00 committed by GitHub
parent c84079d4f3
commit 6e1aba45e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ jobs:
# Install master version # Install master version
# and dependencies for docs and tests # and dependencies for docs and tests
pip install git+https://github.com/DLR-RM/stable-baselines3#egg=stable_baselines3[extra_no_roms,tests,docs] pip install "stable_baselines3[extra_no_roms,tests,docs] @ git+https://github.com/DLR-RM/stable-baselines3"
pip install . pip install .
# Use headless version # Use headless version
pip install opencv-python-headless pip install opencv-python-headless

View File

@ -3,7 +3,7 @@
Changelog Changelog
========== ==========
Release 2.0.0a9 (WIP) Release 2.0.0a13 (WIP)
-------------------------- --------------------------
**Gymnasium support** **Gymnasium support**

View File

@ -1 +1 @@
2.0.0a9 2.0.0a13

View File

@ -65,7 +65,7 @@ setup(
packages=[package for package in find_packages() if package.startswith("sb3_contrib")], packages=[package for package in find_packages() if package.startswith("sb3_contrib")],
package_data={"sb3_contrib": ["py.typed", "version.txt"]}, package_data={"sb3_contrib": ["py.typed", "version.txt"]},
install_requires=[ install_requires=[
"stable_baselines3>=2.0.0a9", "stable_baselines3>=2.0.0a13",
], ],
description="Contrib package of Stable Baselines3, experimental code.", description="Contrib package of Stable Baselines3, experimental code.",
author="Antonin Raffin", author="Antonin Raffin",