Skip to content

Commit

Permalink
Merge branch 'og-develop' into trigger_volumes
Browse files Browse the repository at this point in the history
  • Loading branch information
cgokmen authored Oct 17, 2024
2 parents 4586730 + 542c590 commit ecf38ab
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
38 changes: 19 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,28 +24,28 @@
"gymnasium>=0.28.1",
"numpy<2.0.0,>=1.23.5",
"scipy>=1.10.1",
"GitPython~=3.1.40",
"transforms3d~=0.4.1",
"networkx~=3.2.1",
"PyYAML~=6.0.1",
"addict~=2.4.0",
"ipython~=8.20.0",
"future~=0.18.3",
"trimesh~=4.0.8",
"h5py~=3.10.0",
"cryptography~=41.0.7",
"GitPython>=3.1.40",
"transforms3d>=0.4.1",
"networkx>=3.2.1",
"PyYAML>=6.0.1",
"addict>=2.4.0",
"ipython>=8.20.0",
"future>=0.18.3",
"trimesh>=4.0.8",
"h5py>=3.10.0",
"cryptography>=41.0.7",
"bddl~=3.5.0",
"opencv-python>=4.8.1",
"nest_asyncio~=1.5.8",
"imageio~=2.33.1",
"imageio-ffmpeg~=0.4.9",
"termcolor~=2.4.0",
"progressbar~=2.5",
"nest_asyncio>=1.5.6",
"imageio>=2.33.1",
"imageio-ffmpeg>=0.4.9",
"termcolor>=2.4.0",
"progressbar>=2.5",
"pymeshlab~=2022.2",
"click~=8.1.3",
"aenum~=3.1.15",
"rtree~=1.2.0",
"graphviz~=0.20",
"click>=8.1.3",
"aenum>=3.1.15",
"rtree>=1.2.0",
"graphviz>=0.20",
"matplotlib>=3.0.0",
],
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion tests/test_transform_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def test_quat_slerp(self):
key_rots = R.from_quat(np.stack([q1.cpu().numpy(), q2.cpu().numpy()]))
key_times = [0, 1]
slerp = Slerp(key_times, key_rots)
scipy_q_slerp = slerp([t]).as_quat()[0].astype(NumpyTypes.FLOAT32)
scipy_q_slerp = slerp([t.item()]).as_quat()[0].astype(NumpyTypes.FLOAT32)

assert quaternions_close(q_slerp, th.from_numpy(scipy_q_slerp))
assert_close(th.norm(q_slerp), th.tensor(1.0))
Expand Down

0 comments on commit ecf38ab

Please sign in to comment.