Skip to content

Commit

Permalink
Remove assert
Browse files Browse the repository at this point in the history
  • Loading branch information
mckib2 committed Jul 29, 2020
1 parent 0db0de2 commit 855fed7
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,7 @@ class build_ext(_build_ext):
def get_export_symbols(self, ext):
'''Only for generating Windows DLL.'''
def_file = GLPK_SRC_DIR / '../w64/glpk_4_65.def'
_symbols = scrape_makefile_list(def_file, 'EXPORTS\n', ';; end of file ;;')
print(_symbols)
assert False
return _symbols
return scrape_makefile_list(def_file, 'EXPORTS\n', ';; end of file ;;')

# Get sources for GLPK
makefile = GLPK_SRC_DIR / 'Makefile.am'
Expand All @@ -36,7 +33,7 @@ def get_export_symbols(self, ext):

setup(
name='scikit-glpk',
version='0.1.2',
version='0.1.3',
author='Nicholas McKibben',
author_email='[email protected]',
url='https://github.com/mckib2/scikit-glpk',
Expand Down

0 comments on commit 855fed7

Please sign in to comment.