From fa96cac786d1eafbcd37ee830a1944280ae31357 Mon Sep 17 00:00:00 2001
From: Benedikt Seeger <benedikt.seeger@ptb.de>
Date: Tue, 15 Apr 2025 12:42:23 +0200
Subject: [PATCH] downgraded pytest cov for python 3.7 support

---
 pyproject.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyproject.toml b/pyproject.toml
index a223aad..2818cf1 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -23,6 +23,6 @@ classifiers=[
 [project.optional-dependencies]
 testing = [
     "pytest>=8.0",
-    "pytest-cov>=6.0",
+    "pytest-cov>=5,<6",  # Use pytest-cov version 5.x which supports Python 3.8
     "requests>=2.0"
 ]
\ No newline at end of file
-- 
GitLab