Skip to content

Commit 202a5bf

Browse files
committed
Capture errors due to mismatched numpy versions
1 parent 4ae51b4 commit 202a5bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singlestoredb/converters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
try:
2424
import pygeos
2525
has_pygeos = True
26-
except ImportError:
26+
except (AttributeError, ImportError):
2727
has_pygeos = False
2828

2929
try:

0 commit comments

Comments
 (0)