From bb6b5f99dbd737d9ecc27b1a83ac7cbb6d1f6e08 Mon Sep 17 00:00:00 2001 From: Mavis Ou Date: Tue, 1 Apr 2025 10:14:30 -0700 Subject: [PATCH 1/3] update runtime.txt to Python 3.9.18 --- runtime.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.txt b/runtime.txt index 32a8d83a..815b82f7 100644 --- a/runtime.txt +++ b/runtime.txt @@ -1 +1 @@ -python-3.7.8 +python-3.9.18 From cd6bbc8d2b144fd3701ff57c603ece749883ff38 Mon Sep 17 00:00:00 2001 From: Mavis Ou Date: Tue, 1 Apr 2025 10:26:03 -0700 Subject: [PATCH 2/3] update python version in ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5da284c3..d3a43c5b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: 3.7 + python-version: 3.9.18 - name: Install Python Dependencies run: | pip install -r requirements.txt -r dev-requirements.txt From 9b9a03c207838ba65e5969ad0e97bfac3bdc7e64 Mon Sep 17 00:00:00 2001 From: Mavis Ou Date: Tue, 1 Apr 2025 10:32:05 -0700 Subject: [PATCH 3/3] fix CI - pin setuptools and adding wheel for compatibility --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3a43c5b..acb267cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,6 +32,10 @@ jobs: - uses: actions/setup-python@v2 with: python-version: 3.9.18 + - name: Install wheel and pin setuptools for compatibility + run: | + pip install wheel + pip install "setuptools==65.5.1" - name: Install Python Dependencies run: | pip install -r requirements.txt -r dev-requirements.txt