Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/backend-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11.6"
python-version: "3.13.5"
- name: Install uv
uses: astral-sh/setup-uv@v4
id: setup-uv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backend-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11.6"
python-version: "3.13.5"
- name: Install uv
uses: astral-sh/setup-uv@v4
id: setup-uv
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
nodejs 18.17.1
terraform 1.3.4
python 3.11.2
python 3.13.5
rust 1.61.0
pnpm 9
opentofu 1.9.0
2 changes: 1 addition & 1 deletion Dockerfile.python.local
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG FUNCTION_DIR="/home/app/"

FROM python:3.11
FROM python:3.13.5

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

Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# check=skip=SecretsUsedInArgOrEnv
ARG FUNCTION_DIR="/home/app"

FROM python:3.11-slim AS base
FROM python:3.13.5-slim AS base

ENV DJANGO_SETTINGS_MODULE=pycon.settings.prod \
AWS_MEDIA_BUCKET=example \
Expand Down
10 changes: 5 additions & 5 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[tool.ruff]
line-length = 88
exclude = ["migrations"]
target-version = "py311"
target-version = "py313"

[tool.ruff.lint.isort]
known-first-party = [
Expand Down Expand Up @@ -42,7 +42,7 @@ known-first-party = [


[project]
requires-python = "<3.13,>=3.11"
requires-python = ">=3.13.5"
dependencies = [
"django==5.1.4",
"django-environ==0.10.0",
Expand All @@ -56,7 +56,7 @@ dependencies = [
"aniso8601==9.0.1",
"whitenoise==6.7.0",
"django-ordered-model==3.5",
"uWSGI==2.0.26",
"uwsgi==2.0.30",
"django-storages==1.14.4",
"sentry-sdk==2.11.0",
"boto3==1.35.76",
Expand All @@ -66,7 +66,7 @@ dependencies = [
"hashids<2.0.0,>=1.2.0",
"django-autocomplete-light==3.9.4",
"django-queryinspect<2.0.0,>=1.1.0",
"lxml<5.0.0,>=4.5.0",
"lxml==6.0.0",
"unidecode<2.0.0,>=1.1.1",
"strawberry-graphql==0.243.1",
"Werkzeug<2.0.0,>=1.0.1",
Expand All @@ -89,7 +89,7 @@ dependencies = [
"Jinja2>=3.1.3",
"icalendar>=5.0.11",
"pyclamd>=0.4.0",
"magika>=0.5.1",
"magika==0.6.2",
"tzdata>=2024.1",
"wagtail-factories==4.2.1",
"google-auth-oauthlib>=1.2.1",
Expand Down
1,592 changes: 710 additions & 882 deletions backend/uv.lock

Large diffs are not rendered by default.

Loading