From 97a94a19ad8eed9e98a1061fd41e2f0d5e92689a Mon Sep 17 00:00:00 2001 From: "Hou, Han" Date: Fri, 30 Aug 2024 20:34:31 -0700 Subject: [PATCH 1/2] Upgrade python to 3.9 in publish.yaml --- .github/workflows/publish.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 6b70eef..9aed9ba 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -42,10 +42,10 @@ jobs: - uses: actions/checkout@master - name: Pull latest changes run: git pull origin main - - name: Set up Python 3.8 + - name: Set up Python 3.9 uses: actions/setup-python@v3 with: - python-version: 3.8 + python-version: 3.9 - name: Configure aws credentials uses: aws-actions/configure-aws-credentials@v2 with: From 150bc6d57280c2c8965ad2ebe0550f4bcdba1927 Mon Sep 17 00:00:00 2001 From: "Hou, Han" Date: Fri, 30 Aug 2024 21:06:58 -0700 Subject: [PATCH 2/2] Update python verison to 3.9 in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1251079..8a3c238 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8-slim +FROM python:3.9-slim WORKDIR /app