Skip to content

Commit fb0c1ba

Browse files
committed
Do not use miniexpr on windows yet
1 parent b86994e commit fb0c1ba

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/blosc2/lazyexpr.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,10 @@
9595
try_miniexpr = True
9696
if blosc2.IS_WASM:
9797
try_miniexpr = False
98-
# if sys.platform == "win32":
99-
# try_miniexpr = False
98+
if sys.platform == "win32":
99+
# Although miniexpr has support for windows, the integration with Blosc2
100+
# still has some rough edges.
101+
try_miniexpr = False
100102

101103

102104
def ne_evaluate(expression, local_dict=None, **kwargs):

0 commit comments

Comments
 (0)