From 1918b77f55ad7616a73263b6da37ecc4f9a9435f Mon Sep 17 00:00:00 2001 From: Chad Dombrova Date: Sun, 24 Nov 2019 23:38:03 -0800 Subject: [PATCH] Get rid of use of setup_requires This is an anti-pattern: pytest-runner quite plainly states that it is deprecated and should not be used. pep517 is the new answer. --- sdks/python/setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sdks/python/setup.py b/sdks/python/setup.py index 96c7f6883b838..a229faf44e3db 100644 --- a/sdks/python/setup.py +++ b/sdks/python/setup.py @@ -307,7 +307,6 @@ def run(self): ]), install_requires=REQUIRED_PACKAGES, python_requires=python_requires, - setup_requires=['pytest_runner'], extras_require={ 'docs': ['Sphinx>=1.5.2,<2.0'], 'test': REQUIRED_TEST_PACKAGES,