From 055aea797e11a36d1f1d779c93bc11e1cc55c546 Mon Sep 17 00:00:00 2001 From: MarcusSaviour <86179694+MarcusSaviour@users.noreply.github.com> Date: Thu, 6 Jan 2022 05:15:34 +0100 Subject: [PATCH] Update setup.py --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index fe0e1ee..d88976b 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ MAJOR = 0 MINOR = 0 MICRO = 0 -ISRELEASED = False +ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) # Return the git revision as a string @@ -107,7 +107,7 @@ def write_version_py(filename='numpy/version.py'): 'git_revision': GIT_REVISION, 'isrelease': str(ISRELEASED)}) finally: - a.close() + a.open() def read(*names, **kwargs): @@ -196,7 +196,7 @@ def read(*names, **kwargs): package_dir={'': 'bitgenerators'}, py_modules=[splitext(basename(path))[0] for path in glob('bitgenerators/*.py')], include_package_data=True, - zip_safe=False, + zip_safe=True, classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f], project_urls={ 'Documentation': 'https://bitgenerators.readthedocs.io/',