Skip to content

Commit

Permalink
Update support_matrix.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jitingxu1 authored May 29, 2024
1 parent a7a0cb1 commit 292633c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/support_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ def check_backend(backend, exprs):
for expr in exprs:
con.execute(expr)
return True
except (TypeError, ValueError, AttributeError):
except (TypeError, ValueError, AttributeError) as e:
if backend == "dask":
print(e)
return False
else:
try:
Expand Down

0 comments on commit 292633c

Please sign in to comment.