Skip to content

Commit e06914e

Browse files
authored
Release v2.3.0 (#440)
* Release v2.3.0 * [ci skip] Update coverage
1 parent 6367429 commit e06914e

File tree

6 files changed

+8
-13
lines changed

6 files changed

+8
-13
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Release 2.3.0a4 (WIP)
1+
## Release 2.3.0 (2024-03-31)
22

33
### Breaking Changes
44
- Updated defaults hyperparameters for TD3/DDPG to be more consistent with SAC

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- [![pipeline status](https://gitlab.com/araffin/rl-baselines3-zoo/badges/master/pipeline.svg)](https://gitlab.com/araffin/rl-baselines3-zoo/-/commits/master) -->
22
![CI](https://github.com/DLR-RM/rl-baselines3-zoo/workflows/CI/badge.svg)
33
[![Documentation Status](https://readthedocs.org/projects/rl-baselines3-zoo/badge/?version=master)](https://rl-baselines3-zoo.readthedocs.io/en/master/?badge=master)
4-
[![coverage report](https://gitlab.com/araffin/rl-baselines3-zoo/badges/master/coverage.svg)](https://gitlab.com/araffin/rl-baselines3-zoo/-/commits/master) [![codestyle](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
4+
![coverage report](https://img.shields.io/badge/coverage-68%25-brightgreen.svg?style=flat") [![codestyle](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
55

66

77

docs/conf.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
# If extensions (or modules to document with autodoc) are in another directory,
1111
# add these directories to sys.path here. If the directory is relative to the
1212
# documentation root, use os.path.abspath to make it absolute, like shown here.
13-
#
13+
14+
import datetime
1415
import os
1516
import sys
1617
from typing import Dict
@@ -44,7 +45,7 @@
4445
# -- Project information -----------------------------------------------------
4546

4647
project = "RL Baselines3 Zoo"
47-
copyright = "2023, Stable Baselines3"
48+
copyright = f"2021-{datetime.date.today().year}, Stable Baselines3"
4849
author = "Stable Baselines3 Contributors"
4950

5051
# The short X.Y version

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
gym==0.26.2
2-
stable-baselines3[extra_no_roms,tests,docs]>=2.3.0a4,<3.0
2+
stable-baselines3[extra_no_roms,tests,docs]>=2.3.0,<3.0
33
box2d-py==2.3.8
44
pybullet_envs_gymnasium>=0.4.0
55
# minigrid

rl_zoo3/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.0a4
1+
2.3.0

setup.py

+1-7
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
See https://github.com/DLR-RM/rl-baselines3-zoo
1616
"""
1717
install_requires = [
18-
"sb3_contrib>=2.3.0a4,<3.0",
18+
"sb3_contrib>=2.3.0,<3.0",
1919
"gymnasium~=0.29.1",
2020
"huggingface_sb3>=3.0,<4.0",
2121
"tqdm",
@@ -76,9 +76,3 @@
7676

7777
# Remove copied files after packaging
7878
shutil.rmtree(os.path.join("rl_zoo3", "hyperparams"))
79-
80-
81-
# python setup.py sdist
82-
# python setup.py bdist_wheel
83-
# twine upload --repository-url https://test.pypi.org/legacy/ dist/*
84-
# twine upload dist/*

0 commit comments

Comments
 (0)