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.
2 parents 07e4d6d + 330346d commit 84d8272Copy full SHA for 84d8272
CHANGELOG.md
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
12
### Changed
13
14
+* Fixed `SyntaxError` when importing COMPAS in GHPython.
15
+
16
### Removed
17
18
src/compas/data/encoders.py
@@ -26,7 +26,7 @@
26
import numpy as np
27
28
numpy_support = True
29
-except ImportError:
+except (ImportError, SyntaxError):
30
numpy_support = False
31
32
0 commit comments