1From f9d881cc55c89f51240f93308713216cfec793eb Mon Sep 17 00:00:00 2001 2From: Adam Duskett <Aduskett@gmail.com> 3Date: Sat, 3 Aug 2019 14:23:19 -0400 4Subject: [PATCH] remove pytest-runner requirement 5 6Setup does not actually require pytest-runner. As such, remove it. 7 8Signed-off-by: Adam Duskett <Aduskett@gmail.com> 9--- 10 setup.py | 1 - 11 1 file changed, 1 deletion(-) 12 13diff --git a/setup.py b/setup.py 14index 64e94f1..4e3abb0 100755 15--- a/setup.py 16+++ b/setup.py 17@@ -23,7 +23,6 @@ setup( 18 packages=find_packages() + ["twisted.plugins"], 19 include_package_data=True, 20 install_requires=["twisted[tls]>=18.7", "autobahn>=0.18", "asgiref~=3.2"], 21- setup_requires=["pytest-runner"], 22 extras_require={ 23 "tests": ["hypothesis~=3.88", "pytest~=3.10", "pytest-asyncio~=0.8"] 24 }, 25-- 262.21.0 27 28