-
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 #7 from mckib2/linprog-bounds
Fix setuputils import ordering
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
'''Install scikit-glpk bindings.''' | ||
|
||
import pathlib | ||
from setuptools import find_packages | ||
from distutils.core import Extension, setup | ||
from distutils.command.build_ext import build_ext as _build_ext | ||
from setuptools import find_packages | ||
|
||
GLPK_SRC_DIR = pathlib.Path('glpk-4.65/src') | ||
|
||
|
@@ -41,7 +41,7 @@ def get_export_symbols(self, ext): | |
|
||
setup( | ||
name='scikit-glpk', | ||
version='0.2.1', | ||
version='0.2.2', | ||
author='Nicholas McKibben', | ||
author_email='[email protected]', | ||
url='https://github.com/mckib2/scikit-glpk', | ||
|