From f55e1df4acc6b46bfd86663bc227b13da2fc3678 Mon Sep 17 00:00:00 2001 From: Yashwant Date: Wed, 3 Jul 2019 22:04:58 +0530 Subject: [PATCH] Add more functionality --- src/mlpack/bindings/python/setup.py.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mlpack/bindings/python/setup.py.in b/src/mlpack/bindings/python/setup.py.in index b04f60c2f0..c88069332c 100644 --- a/src/mlpack/bindings/python/setup.py.in +++ b/src/mlpack/bindings/python/setup.py.in @@ -108,5 +108,7 @@ setup(name='mlpack', cmdclass={ 'build_ext': build_ext }, ext_modules = modules, setup_requires=['cython', 'pytest-runner'], - tests_require=['pytest', 'more-itertools>=4.0.0,<6.0.0;python_version<="2.7"'], + tests_require=['pytest>4.6;python_version>"2.7"', 'pytest<=4.6;python_version<="2.7"', + 'more-itertools>=4.0.0,<6.0.0;python_version<="2.7"', + 'more-itertools>=4.0.0;python_version>"2.7"'], zip_safe = False)