Skip to content

Commit 5854839

Browse files
Update Python to 3.13.5 across all configuration files
- Updated Dockerfile.python.local from 3.11 to 3.13.5 - Updated backend/Dockerfile from 3.11-slim to 3.13.5-slim - Updated backend/pyproject.toml: - requires-python from <3.13,>=3.11 to >=3.13.5 - target-version from py311 to py313 - Updated .tool-versions from 3.11.2 to 3.13.5 - Updated GitHub Actions python-version from 3.11.6 to 3.13.5 in: - backend-checks.yml - backend-test.yml 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Marco Acierno <marcoacierno@users.noreply.github.com>
1 parent f8abc19 commit 5854839

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/backend-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-python@v5
2020
with:
21-
python-version: "3.11.6"
21+
python-version: "3.13.5"
2222
- name: Install uv
2323
uses: astral-sh/setup-uv@v4
2424
id: setup-uv

.github/workflows/backend-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v4
3939
- uses: actions/setup-python@v5
4040
with:
41-
python-version: "3.11.6"
41+
python-version: "3.13.5"
4242
- name: Install uv
4343
uses: astral-sh/setup-uv@v4
4444
id: setup-uv

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
nodejs 18.17.1
22
terraform 1.3.4
3-
python 3.11.2
3+
python 3.13.5
44
rust 1.61.0
55
pnpm 9
66
opentofu 1.9.0

Dockerfile.python.local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG FUNCTION_DIR="/home/app/"
22

3-
FROM python:3.11
3+
FROM python:3.13.5
44

55
RUN apt update -y && apt install -y ffmpeg libsm6 libxext6
66

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# check=skip=SecretsUsedInArgOrEnv
22
ARG FUNCTION_DIR="/home/app"
33

4-
FROM python:3.11-slim AS base
4+
FROM python:3.13.5-slim AS base
55

66
ENV DJANGO_SETTINGS_MODULE=pycon.settings.prod \
77
AWS_MEDIA_BUCKET=example \

backend/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[tool.ruff]
33
line-length = 88
44
exclude = ["migrations"]
5-
target-version = "py311"
5+
target-version = "py313"
66

77
[tool.ruff.lint.isort]
88
known-first-party = [
@@ -42,7 +42,7 @@ known-first-party = [
4242

4343

4444
[project]
45-
requires-python = "<3.13,>=3.11"
45+
requires-python = ">=3.13.5"
4646
dependencies = [
4747
"django==5.1.4",
4848
"django-environ==0.10.0",

0 commit comments

Comments
 (0)