From c67d07cb7cf6c05e20e9e750452ffd35b1a2cfbf Mon Sep 17 00:00:00 2001 From: KOLANICH Date: Tue, 19 Jan 2021 14:37:48 +0300 Subject: [PATCH] pytest-runner is not needed for building the package --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ac1c943..be9b263 100755 --- a/setup.py +++ b/setup.py @@ -60,5 +60,5 @@ "include_dirs": [LIBDATRIE_DIR]})], ext_modules=ext_modules, python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", - setup_requires=["pytest-runner", 'Cython>=0.28'], + setup_requires=['Cython>=0.28'], tests_require=["pytest", "hypothesis"])