summaryrefslogtreecommitdiff
path: root/dev-python/pytest-cov/files/pytest-cov-2.8.1-latest-setuptools.patch
blob: 8a9618c3fd984b200896b112a025bb36927c6770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
diff --git a/setup.py b/setup.py
index 1305b23..3a5803e 100644
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@ def read(*names, **kwargs):
 
 
 class BuildWithPTH(build):
-    def run(self):
+    def run(self, **kwargs):
         build.run(self)
         path = join(dirname(__file__), 'src', 'pytest-cov.pth')
         dest = join(self.build_lib, basename(path))
@@ -37,7 +37,7 @@ class BuildWithPTH(build):
 
 
 class EasyInstallWithPTH(easy_install):
-    def run(self):
+    def run(self, **kwargs):
         easy_install.run(self)
         path = join(dirname(__file__), 'src', 'pytest-cov.pth')
         dest = join(self.install_dir, basename(path))
@@ -45,7 +45,7 @@ class EasyInstallWithPTH(easy_install):
 
 
 class InstallLibWithPTH(install_lib):
-    def run(self):
+    def run(self, **kwargs):
         install_lib.run(self)
         path = join(dirname(__file__), 'src', 'pytest-cov.pth')
         dest = join(self.install_dir, basename(path))
@@ -57,7 +57,7 @@ class InstallLibWithPTH(install_lib):
 
 
 class DevelopWithPTH(develop):
-    def run(self):
+    def run(self, **kwargs):
         develop.run(self)
         path = join(dirname(__file__), 'src', 'pytest-cov.pth')
         dest = join(self.install_dir, basename(path))