Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: new release + update dev dependencies #182

Merged
merged 2 commits into from
Jan 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ repository = "https://github.com/Eclectic-Sheep/sheeprl"
[project.optional-dependencies]
test = ["pytest==7.3.1", "pytest-timeout==2.1.0", "pytest-coverage"]
dev = [
"pre-commit==2.20.0",
"pre-commit==3.5.0",
"mypy==1.2.0",
"black==23.3.0",
"isort==5.12.0",
"autoflake==2.1.1",
"ruff==0.0.284",
"black==23.12.1",
"isort==5.13.2",
"autoflake==2.2.1",
"ruff==0.1.9",
]
mujoco = ["mujoco>=2.3.3", "gymnasium[mujoco]==0.29.*"]
dmc = ["dm_control>=1.0.12"]
Expand Down Expand Up @@ -196,7 +196,7 @@ warn_return_any = false


[tool.bumpver]
current_version = "0.5.1"
current_version = "0.5.2"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
tag_message = "v{new_version}"
Expand Down
2 changes: 1 addition & 1 deletion sheeprl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
np.int = np.int64
np.bool = bool

__version__ = "0.5.1"
__version__ = "0.5.2"


# Replace `moviepy.decorators.use_clip_fps_by_default` method to work with python 3.8, 3.9, and 3.10
Expand Down