From 85d283e9dc15cae37a8c98f57b92b2e491607f81 Mon Sep 17 00:00:00 2001 From: Daniel Ecer Date: Tue, 14 Jan 2025 18:23:22 +0000 Subject: [PATCH] Upgraded Python to 3.9 --- .github/workflows/ci.yml | 8 ++++---- .python-version | 2 +- Dockerfile | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc63fdd..e761ea7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,14 +51,14 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.9', '3.10'] include: - - python-version: '3.8' + - python-version: '3.9' push-package: true - os: windows-2019 - python-version: '3.8' + python-version: '3.9' - os: macos-latest - python-version: '3.8' + python-version: '3.9' steps: - uses: actions/checkout@v2 diff --git a/.python-version b/.python-version index 4351a7e..2739029 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.8.7 +3.9.17 diff --git a/Dockerfile b/Dockerfile index 8832eb9..6d74664 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8.8-slim-buster as base +FROM python:3.9-slim-buster as base # shared between builder and runtime image