From dad54908541fb35e6d7c12f047d2bcb43edb4451 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 29 Aug 2026 23:39:45 +0000 Subject: [PATCH] fix(deps): update python --- .github/workflows/main.yml | 2 +- .../compose/dev/django/Dockerfile | 2 +- .../compose/fly/django/Dockerfile | 2 +- {{cookiecutter.github_repository}}/compose/local/Dockerfile | 2 +- {{cookiecutter.github_repository}}/pyproject.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a4e00e7d..f5e6c358 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,7 @@ jobs: - name: Set up Python 3.9 uses: actions/setup-python@v2 with: - python-version: "3.9" + python-version: "3.14" cache: "pip" - name: Install cookiecutter run: | diff --git a/{{cookiecutter.github_repository}}/compose/dev/django/Dockerfile b/{{cookiecutter.github_repository}}/compose/dev/django/Dockerfile index 6f9adf0b..007d4440 100644 --- a/{{cookiecutter.github_repository}}/compose/dev/django/Dockerfile +++ b/{{cookiecutter.github_repository}}/compose/dev/django/Dockerfile @@ -1,4 +1,4 @@ -ARG PYTHON_VERSION=3.9-slim-buster +ARG PYTHON_VERSION=3.11-slim-buster # define an alias for the specfic python version used in this file. FROM python:${PYTHON_VERSION} as python diff --git a/{{cookiecutter.github_repository}}/compose/fly/django/Dockerfile b/{{cookiecutter.github_repository}}/compose/fly/django/Dockerfile index 73dffc89..ccbc95e0 100644 --- a/{{cookiecutter.github_repository}}/compose/fly/django/Dockerfile +++ b/{{cookiecutter.github_repository}}/compose/fly/django/Dockerfile @@ -1,4 +1,4 @@ -ARG PYTHON_VERSION=3.9-slim-buster +ARG PYTHON_VERSION=3.11-slim-buster # define an alias for the specfic python version used in this file. FROM python:${PYTHON_VERSION} as python diff --git a/{{cookiecutter.github_repository}}/compose/local/Dockerfile b/{{cookiecutter.github_repository}}/compose/local/Dockerfile index 082e2ca1..98916af4 100644 --- a/{{cookiecutter.github_repository}}/compose/local/Dockerfile +++ b/{{cookiecutter.github_repository}}/compose/local/Dockerfile @@ -1,4 +1,4 @@ -ARG PYTHON_VERSION=3.9-slim-buster +ARG PYTHON_VERSION=3.11-slim-buster # define an alias for the specfic python version used in this file. FROM python:${PYTHON_VERSION} as python diff --git a/{{cookiecutter.github_repository}}/pyproject.toml b/{{cookiecutter.github_repository}}/pyproject.toml index e2d19637..5de30657 100644 --- a/{{cookiecutter.github_repository}}/pyproject.toml +++ b/{{cookiecutter.github_repository}}/pyproject.toml @@ -5,7 +5,7 @@ description = "{{cookiecutter.project_description}}" authors = ["{{cookiecutter.default_from_email}}"] [tool.poetry.dependencies] -python = "~3.9" +python = "~3.14.0" Django = "~4.1" django-environ = "^0.9" django-sites = "^0.11"