summaryrefslogtreecommitdiff
path: root/textproc/py27-cssselect2/patches/patch-setup.py
blob: 67a97d2df832666942c7cca70af61ab7a0f9d925 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$NetBSD: patch-setup.py,v 1.1 2022/11/30 10:19:25 adam Exp $

Do not require pytest-flake8 and pytest-isort as PkgSrc does have Python 2.7
versions anymore.

--- setup.py.orig	2022-11-30 09:57:23.000000000 +0000
+++ setup.py
@@ -30,7 +30,7 @@ setup(
     setup_requires=pytest_runner,
     test_suite='cssselect2.tests',
     tests_require=[
-        'pytest-runner', 'pytest-cov', 'pytest-flake8', 'pytest-isort'],
+        'pytest-runner', 'pytest-cov'],
     extras_require={'test': [
-        'pytest-runner', 'pytest-cov', 'pytest-flake8', 'pytest-isort']},
+        'pytest-runner', 'pytest-cov']},
 )