Skip to content

Commit

Permalink
Require scipy dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mckib2 committed Jul 29, 2020
1 parent 2e22cee commit 1ab96ff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion make_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ mkdir dist

# Generate distribution archives
python -m pip install --upgrade setuptools wheel
python setup.py sdist bdist_wheel
python setup.py sdist # bdist_wheel

# Upload
python -m pip install --upgrade twine
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
numpy>=1.18.4
scipy>=1.5.2
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def scrape_makefile_list(filename, START_TOKEN, END_TOKEN):

setup(
name='scikit-glpk',
version='0.1.0',
version='0.1.1',
author='Nicholas McKibben',
author_email='[email protected]',
url='https://github.com/mckib2/scikit-glpk',
Expand All @@ -35,7 +35,7 @@ def scrape_makefile_list(filename, START_TOKEN, END_TOKEN):
long_description=open('README.rst', encoding='utf-8').read(),
packages=find_packages(),
keywords='glpk linprog scikit',
install_requires=open('requirements.txt').read().split(),
install_requires=open('requirements.txt', encoding='utf-8').read().split(),
python_requires='>=3.5',

ext_modules=[
Expand Down

0 comments on commit 1ab96ff

Please sign in to comment.