Skip to content

Commit 4e6d7d4

Browse files
committed
Switch to use compas.IPY
1 parent 9f6fc17 commit 4e6d7d4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

src/compas_fab/backends/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
from .vrep.helpers import * # noqa: F401,F403
8484
from .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

src/compas_fab/robots/wrench.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from compas.geometry import Vector
77
from compas.geometry import cross_vectors
88

9-
if not compas.is_ironpython():
9+
if not compas.IPY:
1010
from scipy import stats
1111
else:
1212
stats = None

0 commit comments

Comments
 (0)