Skip to content

Commit 7bc3104

Browse files
authored
Merge pull request #174 from djsutherland/setup-requires
[MRG] Fix requirements
2 parents 1511ecc + 4bb1178 commit 7bc3104

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,8 @@
6666
license='MIT',
6767
scripts=[],
6868
data_files=[],
69-
requires=["numpy", "scipy", "cython"],
70-
setup_requires=["numpy>=1.16", "scipy>=1.0", "cython>=0.23"],
71-
install_requires=["numpy>=1.16", "scipy>=1.0", "cython>=0.23"],
69+
setup_requires=["numpy>=1.16", "cython>=0.23"],
70+
install_requires=["numpy>=1.16", "scipy>=1.0"],
7271
classifiers=[
7372
'Development Status :: 5 - Production/Stable',
7473
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)