Skip to content

Commit

Permalink
Merge pull request #274 from maxspahn/fix-python-upper-limit
Browse files Browse the repository at this point in the history
Limits the version of python due to numpy compatibility, see #273
  • Loading branch information
maxspahn authored Dec 4, 2024
2 parents 4b80c31 + 21dc8df commit d77f31d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
19 changes: 12 additions & 7 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "urdfenvs"
version = "0.9.14"
version = "0.9.15"
description = "Simple simulation environment for robots, based on the urdf files."
authors = ["Max Spahn <m.spahn@tudelft.nl>"]
maintainers = [
Expand All @@ -15,7 +15,7 @@ repository = "https://github.com/maxspahn/gym_envs_urdf"
keywords = ["robotics", "motion-planning", "simulation"]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.8,<3.11"
pybullet = "^3.2.1"
numpy = "^1.19,<1.24"
yourdfpy = "^0.0.56"
Expand Down

0 comments on commit d77f31d

Please sign in to comment.