We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b96e4cc commit a8f310cCopy full SHA for a8f310c
setup.py
@@ -18,12 +18,12 @@ def long_description():
18
19
20
testing_minimal_deps = [
21
- "pytest~=7.2.0",
22
- "pytest-mock~=3.10.0",
+ "pytest>=7.4.0,<8.0.0", # 8.0.0 drops support for Python 3.7
+ "pytest-mock>=3.10.0,<3.12.0", # 3.12.0 drops support for Python 3.7
23
]
24
25
testing_plugin_deps = [
26
- "pytest-cov~=4.0.0",
+ "pytest-cov>=4.0.0,<5.0.0", # 5.0.0 drops support for Python 3.7 (6.0.0 drops 3.8)
27
28
29
testing_deps = testing_minimal_deps + testing_plugin_deps
0 commit comments