From dc96e4e9b9d10f36af0d81b9e6d1cd4dc668853f Mon Sep 17 00:00:00 2001 From: Nicklas Lundin Date: Mon, 22 Sep 2025 11:12:24 +0200 Subject: [PATCH] feat: introduce flexible protobuf version range MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update protobuf dependency from fixed version 5.29.5 to range >=5.29.5,<7.0.0 to allow for more flexible dependency management while maintaining compatibility. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ed08cff..fcf2bd1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ dependencies = [ "openfeature-sdk==0.4.2", "typing_extensions==4.9.0", "httpx==0.27.2", - "protobuf==5.29.5" + "protobuf>=5.29.5,<7.0.0" ] requires-python = ">=3.9"