Skip to content

Commit

Permalink
Merge pull request #7 from mckib2/linprog-bounds
Browse files Browse the repository at this point in the history
Fix setuputils import ordering
  • Loading branch information
mckib2 authored Aug 17, 2020
2 parents e3d5945 + 9cc2153 commit 3ed688e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
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')

Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit 3ed688e

Please sign in to comment.