From 855fed7a58e05c401dddf131db4091f3311d21e7 Mon Sep 17 00:00:00 2001 From: mckib2 Date: Tue, 28 Jul 2020 22:11:51 -0700 Subject: [PATCH] Remove assert --- setup.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 16a2772..59ba618 100644 --- a/setup.py +++ b/setup.py @@ -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' @@ -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='nicholas.bgp@gmail.com', url='https://github.com/mckib2/scikit-glpk',