File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ Unreleased
3131**Changed **
3232
3333* Updated to ``COMPAS 0.18 ``
34+ * Use ``compas.IPY `` to check for IronPython
3435
3536**Fixed **
3637
Original file line number Diff line number Diff line change 8383from .vrep .helpers import * # noqa: F401,F403
8484from .vrep .planner import * # noqa: F401,F403
8585
86- if not compas .is_ironpython () :
86+ if not compas .IPY :
8787 from .pybullet .client import * # noqa: F401,F403
8888 from .pybullet .exceptions import * # noqa: F401,F403
8989 from .pybullet .planner import * # noqa: F401,F403
Original file line number Diff line number Diff line change 66from compas .geometry import Vector
77from compas .geometry import cross_vectors
88
9- if not compas .is_ironpython () :
9+ if not compas .IPY :
1010 from scipy import stats
1111else :
1212 stats = None
You can’t perform that action at this time.
0 commit comments