From 5668fd9c42c573bca729c52d064fbf86c2584b4a Mon Sep 17 00:00:00 2001 From: mio Date: Tue, 5 Oct 2021 15:11:59 +0200 Subject: [PATCH] Set zip_safe and is_pure to False and trigger another build --- bindings/python/setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 3caa0775..0a54015f 100755 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -29,7 +29,7 @@ SRC_DIR = os.path.join(ROOT_DIR, 'src') UC_DIR = os.path.join(ROOT_DIR, '../..') BUILD_DIR = os.path.join(UC_DIR, 'build') -VERSION = "2.0.0rc1" +VERSION = "2.0.0rc2" if SYSTEM == 'darwin': LIBRARY_FILE = "libunicorn.dylib" @@ -249,9 +249,9 @@ setup( ], requires=['ctypes'], cmdclass=cmdclass, - zip_safe=True, + zip_safe=False, include_package_data=True, - is_pure=True, + is_pure=False, package_data={ 'unicorn': ['lib/*', 'include/unicorn/*'] }