0001-remove-pytest-runner-requirement.patch 810 B

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