From dc58f1f5e15f17041961a6f7e0b7f57e1b5c905e Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 6 May 2025 18:45:18 +0000 Subject: [PATCH] tests: exclude google-auth 2.40.0 which breaks async rest --- noxfile.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/noxfile.py b/noxfile.py index b4f8b203de..117ca47c5e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -365,6 +365,14 @@ def showcase_library( "-r", constraints_path, ) + # Exclude `google-auth==2.40.0` which contains a regression + # https://github.com/googleapis/gapic-generator-python/issues/2385 + session.install( + "--no-cache-dir", + "--force-reinstall", + "--upgrade", + "google-auth[aiohttp]!=2.40.0", + ) else: # The ads templates do not have constraints files. # See https://github.com/googleapis/gapic-generator-python/issues/1788