From 85dd7245b49872567a6e769ade85e0fc51504e0a Mon Sep 17 00:00:00 2001 From: Anderson Brandao Date: Sun, 16 Nov 2025 22:57:12 -0300 Subject: [PATCH] Bump python from 3.9 to 3.12 --- .github/workflows/lint.yml | 2 +- Dockerfile | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index aa5baab..c84bec0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: '3.9.24' + python-version: '3.12.12' - name: Update pip and setuptools run: python -m pip install --upgrade pip setuptools diff --git a/Dockerfile b/Dockerfile index 1435c8c..eb13673 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-slim +FROM python:3.12-slim WORKDIR /app diff --git a/pyproject.toml b/pyproject.toml index dac7f68..4a858b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "python-stuff" version = "0.1.0" description = "A bunch of python stuff" readme = "README.md" -requires-python = "~=3.9.2" +requires-python = "~=3.12.12" dependencies = [ "cowsay~=6.1", ]