From f2e131b96f84d190100db43e756d383e384abb37 Mon Sep 17 00:00:00 2001 From: Adam Dyess Date: Tue, 11 Feb 2025 16:18:08 -0600 Subject: [PATCH 1/2] Pinning pbr<6.1.1 so it continues to use setuptools --- wheelhouse.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wheelhouse.txt b/wheelhouse.txt index 5b27b06..e7e04a1 100644 --- a/wheelhouse.txt +++ b/wheelhouse.txt @@ -46,3 +46,7 @@ anyio<3.7.0;python_version >= '3.8' and python_version < '3.12' # sniffio is pulled in for anyio, it is not needed otherwise so make it match sniffio<1.3.1;python_version >= '3.8' and python_version < '3.12' # 1.3.1 requires setuptools>=64 immutables<0.16;python_version < '3.8' # >=0.16 requires setuptools>=42 + + +# https://bugs.launchpad.net/charm-gcp-integrator/+bug/2098017 +pbr<6.1.1 \ No newline at end of file From 8b6bde1656f5f410d43bd026278c104f68c17354 Mon Sep 17 00:00:00 2001 From: Adam Dyess Date: Tue, 11 Feb 2025 16:25:07 -0600 Subject: [PATCH 2/2] Trust Certificats from older python hosts --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 703f07c..c7f9a97 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,6 +31,8 @@ jobs: uses: actions/checkout@v4 - name: Setup Python uses: actions/setup-python@v5 + env: + PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org" with: python-version: ${{ matrix.python }} - name: Install Dependencies