From c9e74033be2f89fe8036ded7587870d3e6516bb9 Mon Sep 17 00:00:00 2001 From: Sahas Subramanian Date: Wed, 24 May 2023 15:06:49 +0200 Subject: [PATCH] Use latest grpcio, to supporting building for arm64 with Python 3.11 Older grpcio versions are available for Python 3.11 on arm64 only as source distributions, so while building on CI, the build container needs to have a C++ compiler. Signed-off-by: Sahas Subramanian --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7d34521e5..47b2537cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,8 +25,8 @@ dependencies = [ "frequenz-api-microgrid >= 0.11.0, < 0.12.0", "frequenz-channels >= 0.14.0, < 0.15.0", "google-api-python-client >= 2.71, < 3", - "grpcio >= 1.51.1, < 2", - "grpcio-tools >= 1.51.1, < 2", + "grpcio >= 1.54.2, < 2", + "grpcio-tools >= 1.54.2, < 2", "networkx >= 2.8, < 4", "numpy >= 1.24.2, < 2", "protobuf >= 4.21.6, < 5",