From 3d6a040e656dd387555e0d7766174bfb92b4c123 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bob=20Dr=C3=B6ge?= Date: Fri, 18 Sep 2026 10:52:48 +0200 Subject: [PATCH 1/2] also apply grpcio hook to version 1.76.0 --- eb_hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eb_hooks.py b/eb_hooks.py index 9949e8ac..96cfa8f6 100644 --- a/eb_hooks.py +++ b/eb_hooks.py @@ -614,7 +614,7 @@ def parse_hook_fontconfig_add_fonts(ec, eprefix): def parse_hook_grpcio_zlib(ec, ecprefix): """Adjust preinstallopts to use ZLIB from compat layer.""" if ec.name == 'grpcio': - target_list = ['1.57.0', '1.67.1', '1.70.0'] + target_list = ['1.57.0', '1.67.1', '1.70.0', '1.76.0'] if ec.version in target_list: exts_list = ec['exts_list'] original_preinstallopts = (exts_list[0][2])['preinstallopts'] From 034274ba4808a8c47b70f5d242a3a13197167b50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bob=20Dr=C3=B6ge?= Date: Fri, 18 Sep 2026 11:10:58 +0200 Subject: [PATCH 2/2] and also apply grpcio hook to version 1.81.0 --- eb_hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eb_hooks.py b/eb_hooks.py index 96cfa8f6..ad37ed0b 100644 --- a/eb_hooks.py +++ b/eb_hooks.py @@ -614,7 +614,7 @@ def parse_hook_fontconfig_add_fonts(ec, eprefix): def parse_hook_grpcio_zlib(ec, ecprefix): """Adjust preinstallopts to use ZLIB from compat layer.""" if ec.name == 'grpcio': - target_list = ['1.57.0', '1.67.1', '1.70.0', '1.76.0'] + target_list = ['1.57.0', '1.67.1', '1.70.0', '1.76.0', '1.81.0'] if ec.version in target_list: exts_list = ec['exts_list'] original_preinstallopts = (exts_list[0][2])['preinstallopts']