Skip to content
Snippets Groups Projects
Commit 94e533bf authored by Benedikt's avatar Benedikt
Browse files

try to find pytest-cov for older python versions

parent fa96cac7
No related branches found
No related tags found
1 merge request!2Updating devel state
Pipeline #54324 failed
...@@ -23,6 +23,9 @@ classifiers=[ ...@@ -23,6 +23,9 @@ classifiers=[
[project.optional-dependencies] [project.optional-dependencies]
testing = [ testing = [
"pytest>=8.0", "pytest>=8.0",
"pytest-cov>=5,<6", # Use pytest-cov version 5.x which supports Python 3.8 "requests>=2.0",
"requests>=2.0" # For Python 3.9 and up, use pytest-cov>=6.0
'pytest-cov>=6.0; python_version >= "3.9"',
# For older versions, use an older version of pytest-cov or omit it:
'pytest-cov>=5,<6; python_version < "3.9"'
] ]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment