We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe23d0e commit f18aa1dCopy full SHA for f18aa1d
CHANGELOG.md
@@ -206,6 +206,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
206
* Fixed bug in `compas.geometry.angle_vectors_signed`.
207
* Changed `compas.artists.MeshArtist` default colors.
208
* Changed internal _plane storage of the `compas.datastructures.Halfface` from `_plane[u][v][w]` to `_plane[u][v][fkey]`
209
+* Fixed `SyntaxError` when importing COMPAS in GHPython.
210
211
### Removed
212
src/compas/data/encoders.py
@@ -25,7 +25,7 @@
25
import numpy as np
26
27
numpy_support = True
28
-except ImportError:
+except (ImportError, SyntaxError):
29
numpy_support = False
30
31
0 commit comments