Skip to content

Commit

Permalink
Merge pull request #1189 from compas-dev/lts-backports/sync-230929
Browse files Browse the repository at this point in the history
LTS backports/sync 230929
  • Loading branch information
gonzalocasas authored Sep 29, 2023
2 parents 07e4d6d + 330346d commit 84d8272
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

* Fixed `SyntaxError` when importing COMPAS in GHPython.

### Removed


Expand Down
2 changes: 1 addition & 1 deletion src/compas/data/encoders.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import numpy as np

numpy_support = True
except ImportError:
except (ImportError, SyntaxError):
numpy_support = False


Expand Down

0 comments on commit 84d8272

Please sign in to comment.