0001-remove-pytest-runner-requirement.patch 875 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. include_package_data=True,
  16. install_requires=["twisted[tls]>=22.4", "autobahn>=22.4.2", "asgiref>=3.5.2,<4"],
  17. python_requires=">=3.7",
  18. - setup_requires=["pytest-runner"],
  19. extras_require={"tests": ["hypothesis", "pytest", "pytest-asyncio", "django"]},
  20. entry_points={
  21. "console_scripts": ["daphne = daphne.cli:CommandLineInterface.entrypoint"]
  22. --
  23. 2.21.0