From b8ff1a6342fd4310dfcd101569c046053a9d8d76 Mon Sep 17 00:00:00 2001 From: Antonin RAFFIN Date: Mon, 18 Nov 2024 11:32:11 +0100 Subject: [PATCH] Release v2.4.0 (#476) --- CHANGELOG.md | 3 +-- requirements.txt | 2 +- rl_zoo3/version.txt | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95f56c118..773e72b6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Release 2.4.0a11 (WIP) +## Release 2.4.0 (2024-11-18) **New algorithm: CrossQ, Gymnasium v1.0 support, and better defaults for SAC/TQC on Swimmer-v4 env** @@ -10,7 +10,6 @@ ### New Features - Added `CrossQ` hyperparameters for SB3-contrib (@danielpalen) - Added Gymnasium v1.0 support -- `--custom-objects` in `enjoy.py` now also patches obs space (when bounds are changed) to solve "Observation spaces do not match" errors ### Bug fixes - Replaced deprecated `huggingface_hub.Repository` when pushing to Hugging Face Hub by the recommended `HfApi` (see https://huggingface.co/docs/huggingface_hub/concepts/git_vs_http) (@cochaviz) diff --git a/requirements.txt b/requirements.txt index cda9d4521..acacb450e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ gym==0.26.2 -stable-baselines3[extra,tests,docs]>=2.4.0a11,<3.0 +stable-baselines3[extra,tests,docs]>=2.4.0,<3.0 box2d-py==2.3.8 pybullet_envs_gymnasium>=0.5.0 # minigrid diff --git a/rl_zoo3/version.txt b/rl_zoo3/version.txt index d5cafdb5a..197c4d5c2 100644 --- a/rl_zoo3/version.txt +++ b/rl_zoo3/version.txt @@ -1 +1 @@ -2.4.0a11 +2.4.0 diff --git a/setup.py b/setup.py index 6699e0e04..fd98f84f0 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ See https://github.com/DLR-RM/rl-baselines3-zoo """ install_requires = [ - "sb3_contrib>=2.4.0a11,<3.0", + "sb3_contrib>=2.4.0,<3.0", "gymnasium>=0.29.1,<1.1.0", "huggingface_sb3>=3.0,<4.0", "tqdm",