diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ffdfda8..fe8f37e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,6 @@ jobs: env: TERM: xterm-256color FORCE_COLOR: 1 - ATARI_ROMS: ${{ secrets.ATARI_ROMS }} # Skip CI if [ci skip] in the commit message if: "! contains(toJSON(github.event.commits.*.message), '[ci skip]')" runs-on: ubuntu-latest @@ -36,13 +35,13 @@ jobs: # Install Atari Roms pip install autorom - wget $ATARI_ROMS + wget https://gist.githubusercontent.com/jjshoots/61b22aefce4456920ba99f2c36906eda/raw/00046ac3403768bfe45857610a3d333b8e35e026/Roms.tar.gz.b64 base64 Roms.tar.gz.b64 --decode &> Roms.tar.gz AutoROM --accept-license --source-file Roms.tar.gz # Install master version # and dependencies for docs and tests - pip install git+https://github.com/DLR-RM/stable-baselines3#egg=stable_baselines3[extra,tests,docs] + pip install git+https://github.com/DLR-RM/stable-baselines3#egg=stable_baselines3[extra_no_roms,tests,docs] pip install . # Use headless version pip install opencv-python-headless diff --git a/docs/misc/changelog.rst b/docs/misc/changelog.rst index 8a77467..887619f 100644 --- a/docs/misc/changelog.rst +++ b/docs/misc/changelog.rst @@ -3,7 +3,7 @@ Changelog ========== -Release 1.8.0a8 (WIP) +Release 1.8.0a9 (WIP) -------------------------- Breaking Changes: @@ -24,6 +24,7 @@ Others: ^^^^^^^ - Moved to pyproject.toml (except flake8) - Added github issue forms +- Fix Atari Roms download in CI Documentation: ^^^^^^^^^^^^^^ diff --git a/sb3_contrib/version.txt b/sb3_contrib/version.txt index 8daa30f..13ef2a8 100644 --- a/sb3_contrib/version.txt +++ b/sb3_contrib/version.txt @@ -1 +1 @@ -1.8.0a8 +1.8.0a9 diff --git a/setup.py b/setup.py index 2c74282..d157695 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.8.0a8", + "stable_baselines3>=1.8.0a9", ], description="Contrib package of Stable Baselines3, experimental code.", author="Antonin Raffin",