summaryrefslogtreecommitdiff
blob: 6807c5544c833e4597a4bf54c4ab6c109ab31159 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Make sure setuptools does not create a zip file in python_test; this is buggy
and causes tests to fail.

--- a/setup.py
+++ b/setup.py
@@ -179,6 +179,7 @@
                  ext_modules = ext_modules,
                  cmdclass = {'install_lib': MyInstallLib,
                              'build_py': MyBuildPy},
+                 zip_safe = False,
                  **kwargs
                  )