From 5c377e42e49dc5cc29f562b8c3ed5d86b3057472 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 4 Mar 2025 20:33:26 -0500 Subject: [PATCH 1/2] fix(deps): allow protobuf 6.x --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6fb7cbe2..9e971098 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ classifiers = [ "Topic :: Software Development :: Code Generators", "Topic :: Software Development :: Libraries :: Python Modules", ] -dependencies = ["protobuf >=3.19.0, < 6.0.0dev"] +dependencies = ["protobuf >=3.19.0, < 7.0.0dev"] dynamic = ["version"] [project.urls] From 039092199550b9700d779559b4f6a8fb84f567f9 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 4 Mar 2025 20:34:07 -0500 Subject: [PATCH 2/2] Remove 'dev' --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9e971098..3a031d66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ classifiers = [ "Topic :: Software Development :: Code Generators", "Topic :: Software Development :: Libraries :: Python Modules", ] -dependencies = ["protobuf >=3.19.0, < 7.0.0dev"] +dependencies = ["protobuf >=3.19.0, < 7.0.0"] dynamic = ["version"] [project.urls]