-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
Submodule libCZI
updated
2 files
+1 −5 | Src/JxrDecode/JxrDecode.vcxproj | |
+2 −6 | Src/libCZI/libCZI.vcxproj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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, | ||
|
@@ -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]', | ||
|