From 2bf35e7bec0a57a8d8f56b41ff8659947f643f4b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl>
Date: Wed, 6 Mar 2024 14:00:06 +0100
Subject: [PATCH] fix CC

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

diff --git a/pyproject.toml b/pyproject.toml
index 35a787e0..bd695d09 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -31,7 +31,8 @@ version = { attr = "satella.__version__" }
 
 [project.optional-dependencies]
 dev = ["pylint", "toml", "requests", "codeclimate-test-reporter", "opentracing"]
-test = ["pytest-cov", "pytest-xdist", "pytest", "pytest-forked", "pluggy", "py", "coverage>4.4"]
+# at most coverage 4.3 can be used because CodeClimate's test reporter is a bit stupid
+test = ["pytest-cov", "pytest-xdist", "pytest", "pytest-forked", "pluggy", "py", "coverage<4.4"]
 extras = ["requests", "pyyaml", "toml", "ujson", "cassandra-driver", "opentracing"]
 
 
-- 
GitLab