Skip to content

Commit f544918

Browse files
committed
version 1.1.2.
1 parent 1599c66 commit f544918

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

ivy_demo_utils/ivy_scene/scene_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
# pyrep
1111
try:
1212
from pyrep import PyRep
13+
from pyrep.backend import utils
1314
from pyrep.objects.dummy import Dummy
1415
from pyrep.objects.shape import Shape
1516
from pyrep.robots.arms.arm import Arm
@@ -278,7 +279,7 @@ def update_path_visualization(self, multi_spline_points, multi_spline_sdf_vals,
278279
plt.pause(0.1)
279280
plt.ioff()
280281
return
281-
with self._pyrep._step_lock:
282+
with utils.step_lock:
282283
self._update_path_visualization_pyrep(multi_spline_points, multi_spline_sdf_vals)
283284

284285
def close(self):

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
import setuptools
33

44
setup(name='ivy-demo-utils',
5-
version='1.1.1',
6-
description='Ivy Demo Utils provides a set of utilities for creating visual demos for Ivy libraries',
5+
version='1.1.2',
6+
description='Ivy Demo Utils provides a set of utilities for creating visual demos for Ivy libraries.\n'
7+
'Tested with Ivy 1.1.2',
78
author='Ivy Team',
89
author_email='ivydl.team@gmail.com',
910
packages=setuptools.find_packages(),

0 commit comments

Comments
 (0)