Skip to content

Commit

Permalink
version 1.1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
djl11 committed Feb 27, 2021
1 parent 1599c66 commit f544918
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ivy_demo_utils/ivy_scene/scene_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
# pyrep
try:
from pyrep import PyRep
from pyrep.backend import utils
from pyrep.objects.dummy import Dummy
from pyrep.objects.shape import Shape
from pyrep.robots.arms.arm import Arm
Expand Down Expand Up @@ -278,7 +279,7 @@ def update_path_visualization(self, multi_spline_points, multi_spline_sdf_vals,
plt.pause(0.1)
plt.ioff()
return
with self._pyrep._step_lock:
with utils.step_lock:
self._update_path_visualization_pyrep(multi_spline_points, multi_spline_sdf_vals)

def close(self):
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
import setuptools

setup(name='ivy-demo-utils',
version='1.1.1',
description='Ivy Demo Utils provides a set of utilities for creating visual demos for Ivy libraries',
version='1.1.2',
description='Ivy Demo Utils provides a set of utilities for creating visual demos for Ivy libraries.\n'
'Tested with Ivy 1.1.2',
author='Ivy Team',
author_email='[email protected]',
packages=setuptools.find_packages(),
Expand Down

0 comments on commit f544918

Please sign in to comment.