Skip to content

Commit

Permalink
feat: new release + update dev dependencies (#182)
Browse files Browse the repository at this point in the history
* feat: new release + update dev dependencies

* fix: downgrade pre-commit to v3.5.0 to be python3.8 compliant
  • Loading branch information
michele-milesi committed Jan 5, 2024
1 parent d3e55fd commit e3bddd8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
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

0 comments on commit e3bddd8

Please sign in to comment.