This is an automated email from the ASF dual-hosted git repository.
uwe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new a1fd796 ARROW-2050: [Python] Support `setup.py pytest`
a1fd796 is described below
commit a1fd79625aca5fd77eb987572bc45b8dc4a4871b
Author: moriyoshi <[email protected]>
AuthorDate: Fri Feb 2 10:27:37 2018 +0100
ARROW-2050: [Python] Support `setup.py pytest`
* By using `pytest-runner`, the test dependencies can automatically be
fetched before running test suite.
Author: moriyoshi <[email protected]>
Closes #1527 from moriyoshi/moriyoshi/pytest-runner and squashes the
following commits:
7b73105 [moriyoshi] Support setup.py pytest
---
python/setup.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/python/setup.py b/python/setup.py
index cfc771f..726bb51 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -447,9 +447,9 @@ setup(
]
},
use_scm_version={"root": "..", "relative_to": __file__, "parse":
parse_version},
- setup_requires=['setuptools_scm', 'cython >= 0.23'],
+ setup_requires=['setuptools_scm', 'cython >= 0.23', 'pytest-runner'],
install_requires=install_requires,
- tests_require=['pytest'],
+ tests_require=['pytest', 'pandas'],
description="Python library for Apache Arrow",
long_description=long_description,
classifiers=[
--
To stop receiving notification emails like this one, please contact
[email protected].