1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Author: Wolfgang Silbermayr <wolfgang@silbermayr.at>
Date: Wed, 28 Jul 2021 06:20:02 +0200
Forwarded: not-needed
Subject: Ignore version requirement for pytest-runner
When building, setuptools fails to find pytest-runner because this exact
version is not available in Debian.
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index aef5c4e..030ea14 100755
--- a/setup.py
+++ b/setup.py
@@ -73,7 +73,7 @@ setup(name='cpplint',
long_description=open('README.rst').read(),
license='BSD-3-Clause',
setup_requires=[
- "pytest-runner==5.2"
+ "pytest-runner"
],
tests_require=test_required,
# extras_require allow pip install .[dev]
|