-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from mckib2/mps-integer-support
ENH: support writing MIP MPS files via integrality argument
- Loading branch information
Showing
3 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ def scrape_makefile_list(filename, START_TOKEN, END_TOKEN): | |
|
||
|
||
class build_ext(_build_ext): | ||
'''Overide get_export_symbols to provide them for Windows DLL.''' | ||
'''Override get_export_symbols to provide them for Windows DLL.''' | ||
def get_export_symbols(self, ext): | ||
'''Only for generating Windows DLL.''' | ||
def_file = GLPK_SRC_DIR / '../w64/glpk_4_65.def' | ||
|
@@ -41,7 +41,7 @@ def get_export_symbols(self, ext): | |
|
||
setup( | ||
name='scikit-glpk', | ||
version='0.4.3', | ||
version='0.4.4', | ||
author='Nicholas McKibben', | ||
author_email='[email protected]', | ||
url='https://github.com/mckib2/scikit-glpk', | ||
|