Skip to content

Commit

Permalink
Merge pull request #44 from dfki-ric/bugfix/initialisation-example
Browse files Browse the repository at this point in the history
Fix reference to renamed constant
  • Loading branch information
mlaux1 authored Jun 21, 2024
2 parents 6d38fe5 + 901ac73 commit 7807721
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/uniform_initialisation_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"""

base_initial_pose = FloatingMiaGraspEnv.HARD_INITIAL_POSE.copy()
base_initial_pose = FloatingMiaGraspEnv.INITIAL_POSE.copy()
low = base_initial_pose.copy()
high = base_initial_pose.copy()

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
gymnasium>=0.29.1
numpy>=1.23.5
numpy>=1.23.5,<2.0.0
pybullet>=3.2.5
pytransform3d>=2.0.0
scipy>=1.10.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
install_requires=[
"pybullet",
"gymnasium",
"numpy",
"numpy>=1.23.5,<2.0.0",
"pytransform3d"
])

0 comments on commit 7807721

Please sign in to comment.