Repository: arrow Updated Branches: refs/heads/master 3ee3822b6 -> c13d671b1
ARROW-644: Python: Cython should be a setup-only requirement Author: Uwe L. Korn <[email protected]> Closes #392 from xhochy/ARROW-644 and squashes the following commits: 5d99895 [Uwe L. Korn] ARROW-644: Python: Cython should be a setup-only requirement Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/c13d671b Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/c13d671b Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/c13d671b Branch: refs/heads/master Commit: c13d671b15cc701e396b11f17e6d36a339dd5210 Parents: 3ee3822 Author: Uwe L. Korn <[email protected]> Authored: Thu Mar 16 20:50:10 2017 -0400 Committer: Wes McKinney <[email protected]> Committed: Thu Mar 16 20:50:10 2017 -0400 ---------------------------------------------------------------------- python/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/c13d671b/python/setup.py ---------------------------------------------------------------------- diff --git a/python/setup.py b/python/setup.py index a0573fe..9abf985 100644 --- a/python/setup.py +++ b/python/setup.py @@ -321,8 +321,8 @@ setup( 'build_ext': build_ext }, use_scm_version = {"root": "..", "relative_to": __file__}, - setup_requires=['setuptools_scm'], - install_requires=['cython >= 0.23', 'numpy >= 1.9', 'six >= 1.0.0'], + setup_requires=['setuptools_scm', 'cython >= 0.23'], + install_requires=['numpy >= 1.9', 'six >= 1.0.0'], test_requires=['pytest'], description="Python library for Apache Arrow", long_description=long_description,
