Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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):
Expand Down Expand Up @@ -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/',
Expand Down