From 0d735396ac7fe507923e7d920f0dd6bce07fcd64 Mon Sep 17 00:00:00 2001 From: Rey DeLeon Date: Mon, 21 Jul 2025 10:21:59 -0600 Subject: [PATCH 1/2] Protobuf version remove restriction on v6 --- ansys/api/additive/VERSION | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ansys/api/additive/VERSION b/ansys/api/additive/VERSION index fbcf992..12a2c52 100644 --- a/ansys/api/additive/VERSION +++ b/ansys/api/additive/VERSION @@ -1 +1 @@ -5.1.1-dev0 \ No newline at end of file +5.1.2-dev0 diff --git a/setup.py b/setup.py index a82be59..4d87b75 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ url=f"https://github.com/ansys/{package_name}", license="MIT", python_requires=">=3.8,<4", - install_requires=["grpcio~=1.47", "protobuf>=3.19,<6"], + install_requires=["grpcio~=1.47", "protobuf>=3.19"], packages=setuptools.find_namespace_packages( ".", include=("ansys.*", "google.*") ), From 0b5b491a303e6a74d641f9ee87380e575f7f370d Mon Sep 17 00:00:00 2001 From: Rey DeLeon Date: Tue, 22 Jul 2025 00:51:23 -0600 Subject: [PATCH 2/2] Pin setuptools --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 57d6e63..23aed5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["setuptools >= 42.0.0", "wheel", "ansys_tools_protoc_helper>=0.4.0"] +requires = ["setuptools >= 42.0.0,<81", "wheel", "ansys_tools_protoc_helper>=0.4.0"] build-backend = "setuptools.build_meta:__legacy__"