Skip to content

Commit 4acb44f

Browse files
Fixing issue #7
Removed `cython` from install_requires keyword argument to setup, as the latter indicates run-time dependencies, rather than build-time ones.
1 parent 2a1babb commit 4acb44f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def setup_package():
8787
platforms = ["Windows", "Linux", "Mac OS-X"],
8888
test_suite = 'nose.collector',
8989
python_requires = '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
90-
install_requires = ['numpy', 'cython'],
90+
install_requires = ['numpy'],
9191
configuration = configuration
9292
)
9393
setup(**metadata)

0 commit comments

Comments
 (0)