From 14835592541fdb52e6ad77c02bea5fa33fba00c6 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 25 Jul 2023 11:24:02 -0400 Subject: [PATCH] actions: google-auth ToT to solve Python 3.12 issues with deprecated six library --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 843540ca..ba6546cb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -426,6 +426,13 @@ jobs: "${PYTHON}" -m pip install --upgrade wheel "${PYTHON}" -m pip install --upgrade setuptools + - name: ToT Google Auth for Python 3.12 + if: matrix.python == '3.12' + run: | + # This can be removed once google-auth 2.23+ is out + # and removes six deps + "${PYTHON}" -m pip install --upgrade --force git+https://github.com/googleapis/google-auth-library-python@main + - name: Install pip requirements run: | echo "before anything..."