Skip to content

Commit 9d6da1e

Browse files
committed
macros are not zip safe, because the zip importer fails to find sources, and MacroPy needs them
1 parent 4739b7c commit 9d6da1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ def my_yield(value, cc):
368368
#
369369
packages = ["unpythonic", "unpythonic.syntax"],
370370

371-
zip_safe = True, # no Cython extensions
371+
zip_safe = False, # macros are not zip safe, because the zip importer fails to find sources, and MacroPy needs them.
372372

373373
# Custom data files not inside a Python package
374374
data_files = datafiles

0 commit comments

Comments
 (0)