summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 1a334efe2..0596a0194 100644
--- a/setup.py
+++ b/setup.py
@@ -51,7 +51,11 @@ docs_extras = [
'sphinxcontrib-autoprogram',
]
-testing_extras = tests_require + ['coverage', 'pytest', 'pytest-cov']
+testing_extras = tests_require + [
+ 'coverage',
+ 'pytest>=5.4.2', # unittest.TestCase funkyness, see commit 77c1505ab
+ 'pytest-cov',
+]
branch_version = ".".join(VERSION.split(".")[:2])