Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
elhuhdron committed Aug 17, 2018
1 parent e4974af commit 462b71d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libCZI
2 changes: 1 addition & 1 deletion pylibczi/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.115"
__version__ = "0.116"
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ def safe_get_env_var_list(var):
library_dirs.append('/usr/local/lib')

sources = ['_pylibczi.cpp']
version = open("pylibczi/_version.py").readlines()[-1].split()[-1].strip("\"'")

module1 = Extension('_pylibczi',
define_macros = [('MAJOR_VERSION', '0'),
('MINOR_VERSION', '1')],
define_macros = [('PYLIBCZI_VERSION', version),],
include_dirs = include_dirs,
libraries = libraries,
library_dirs = library_dirs,
Expand All @@ -157,7 +157,7 @@ def safe_get_env_var_list(var):
data_files += glob.glob(os.path.join(lib_libCZI,'*.dll'))

setup (name = 'pylibczi',
version=open("pylibczi/_version.py").readlines()[-1].split()[-1].strip("\"'"),
version=version,
description = 'Python module utilizing libCZI for reading Zeiss CZI files.',
author = 'Paul Watkins',
author_email = '[email protected]',
Expand Down

0 comments on commit 462b71d

Please sign in to comment.