Skip to content

Commit

Permalink
Now pointing to correct major libboost version.
Browse files Browse the repository at this point in the history
  • Loading branch information
loli committed Dec 20, 2018
1 parent 3cd2971 commit 4aba755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def read(fname):
boost_python_library = 'boost_python-py' + str(sys.version_info.major) + str(sys.version_info.minor)
if not find_library(boost_python_library):
# exact version not find, trying with major fit only as fallback
boost_python_library = 'boost_python-py' + str(sys.version_info.major)
boost_python_library = 'boost_python' + str(sys.version_info.major)

maxflow = Extension('medpy.graphcut.maxflow',
define_macros = [('MAJOR_VERSION', '0'),
Expand Down

0 comments on commit 4aba755

Please sign in to comment.