Skip to content

Commit f4fd934

Browse files
numpy and cython are required for setup, but six is required for install, for now
1 parent 2d06d24 commit f4fd934

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ def setup_package():
9999
platforms=["Windows", "Linux", "Mac OS-X"],
100100
test_suite='nose.collector',
101101
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
102-
install_requires=['numpy', 'cython'],
102+
setup_requires=['numpy', 'cython'],
103+
install_requires=['six'],
103104
configuration=configuration,
104105
)
105106
setup(**metadata)

0 commit comments

Comments
 (0)