Update CI

This commit is contained in:
Antonin RAFFIN 2020-09-25 12:50:52 +02:00
parent 048a512dd1
commit 17c2dabc7f
2 changed files with 3 additions and 0 deletions

View File

@ -32,6 +32,7 @@ jobs:
pip install stable_baselines3[extra,tests,docs] pip install stable_baselines3[extra,tests,docs]
# Install master version # Install master version
pip install git+https://github.com/DLR-RM/stable-baselines3 pip install git+https://github.com/DLR-RM/stable-baselines3
pip install .
# Use headless version # Use headless version
pip install opencv-python-headless pip install opencv-python-headless
# - name: Build the doc # - name: Build the doc

View File

@ -24,6 +24,8 @@ setup(
package_data={"sb3_contrib": ["py.typed", "version.txt"]}, package_data={"sb3_contrib": ["py.typed", "version.txt"]},
install_requires=[ install_requires=[
"stable_baselines3[tests,docs]", "stable_baselines3[tests,docs]",
# For progress bar when using CRR
"tqdm"
# Enable CMA # Enable CMA
# "cma", # "cma",
], ],