Skip to content

Commit 7b3b348

Browse files
authored
Remove dependencies upper bounds constraints (#10)
1 parent 9f59747 commit 7b3b348

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ repos:
1818
hooks:
1919
- id: pyupgrade
2020
- repo: https://github.com/astral-sh/ruff-pre-commit
21-
rev: v0.4.2
21+
rev: v0.4.3
2222
hooks:
2323
- id: ruff
2424
args: [--fix]

poetry.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "gym-pusht"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "A gymnasium environment for PushT."
55
authors = [
66
"Rémi Cadène <re.cadene@gmail.com>",
@@ -22,16 +22,16 @@ packages = [{include = "gym_pusht"}]
2222

2323
[tool.poetry.dependencies]
2424
python = "^3.10"
25-
gymnasium = "^0.29.1"
26-
opencv-python = "^4.9.0.80"
27-
pygame = "^2.5.2"
28-
pymunk = "^6.6.0"
29-
shapely = "^2.0.3"
25+
gymnasium = ">=0.29.1"
26+
opencv-python = ">=4.9.0.80"
27+
pygame = ">=2.5.2"
28+
pymunk = ">=6.6.0"
29+
shapely = ">=2.0.3"
3030
scikit-image = ">=0.22.0"
31-
pre-commit = {version = "^3.7.0", optional = true}
32-
debugpy = {version = "^1.8.1", optional = true}
33-
pytest = {version = "^8.1.0", optional = true}
34-
pytest-cov = {version = "^5.0.0", optional = true}
31+
pre-commit = {version = ">=3.7.0", optional = true}
32+
debugpy = {version = ">=1.8.1", optional = true}
33+
pytest = {version = ">=8.1.0", optional = true}
34+
pytest-cov = {version = ">=5.0.0", optional = true}
3535

3636

3737
[tool.poetry.extras]

0 commit comments

Comments
 (0)