From 115ca9ebee16b3ad3385793c01351abb65f9fd0f Mon Sep 17 00:00:00 2001 From: Roman Melnyk Date: Sat, 5 Jul 2025 13:41:48 +0200 Subject: [PATCH] Fix: Add version constraints to schemaregistry dependencies This commit adds explicit version constraints to attrs and cachetools to ensure they are properly installed when using the schemaregistry extra. This fixes the "No module named 'attrs'" error reported in issue #1972. The version constraints are based on the versions that were successfully resolved in the user's pip-compile output. --- requirements/requirements-schemaregistry.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements/requirements-schemaregistry.txt b/requirements/requirements-schemaregistry.txt index 1534bd34a..f6e9d5afe 100644 --- a/requirements/requirements-schemaregistry.txt +++ b/requirements/requirements-schemaregistry.txt @@ -1,4 +1,4 @@ -attrs -cachetools +attrs>=21.2.0 +cachetools>=5.5.0 httpx>=0.26 authlib>=1.0.0