From 1a816ca231616bb343ee4d65b5719d722b1aad22 Mon Sep 17 00:00:00 2001
From: Benedikt Seeger <benedikt.seeger@ptb.de>
Date: Tue, 15 Apr 2025 12:58:22 +0200
Subject: [PATCH] only pytest 7 is supported by python 3.7

---
 pyproject.toml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pyproject.toml b/pyproject.toml
index 17bf06b..66a525a 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -22,10 +22,10 @@ classifiers=[
 
 [project.optional-dependencies]
 testing = [
-    "pytest>=8.0",
+    "pytest>=7.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; python_version < "3.9"' # we take any we get 
+    'pytest-cov; python_version < "3.9"' # we take any we get
 ]
\ No newline at end of file
-- 
GitLab