0001-setup.py-remove-pytest-runner-requirement.patch 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. From fdba1f12843d0fdbd5094144a8081244b71b2cf0 Mon Sep 17 00:00:00 2001
  2. From: Arno Messiaen <arnomessiaen@gmail.com>
  3. Date: Wed, 22 Nov 2023 08:12:08 +0100
  4. Subject: [PATCH] setup.py: remove pytest-runner requirement
  5. setup.py: pytest-runner is not required to install the package
  6. Upstream: N/A, Buildroot packaging related
  7. Signed-off-by: Arno Messiaen <arnomessiaen@gmail.com>
  8. ---
  9. setup.py | 3 ---
  10. 1 file changed, 3 deletions(-)
  11. diff --git a/setup.py b/setup.py
  12. index 062bb08..f19bc0a 100644
  13. --- a/setup.py
  14. +++ b/setup.py
  15. @@ -13,8 +13,6 @@ with open('HISTORY.rst') as history_file:
  16. requirements = ['aiohttp>=3', 'attrs', 'multidict', 'yarl', ]
  17. -setup_requirements = ['pytest-runner', ]
  18. -
  19. test_requirements = ['pytest', ]
  20. setup(
  21. @@ -41,7 +39,6 @@ setup(
  22. keywords='aiohttp_sse_client',
  23. name='aiohttp-sse-client',
  24. packages=find_packages(include=['aiohttp_sse_client']),
  25. - setup_requires=setup_requirements,
  26. test_suite='tests',
  27. tests_require=test_requirements,
  28. url='https://github.com/rtfol/aiohttp-sse-client',
  29. --
  30. 2.40.1