From 4b76e9571fa591c29351253bd395a68b088fc019 Mon Sep 17 00:00:00 2001 From: Florent Chehab Date: Fri, 27 Feb 2026 10:42:06 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20(python)=20bump=20minimal?= =?UTF-8?q?=20required=20python=20version=20to=203.13?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We are going to use features only available in python 3.13. We already ship docker images based on python 3.13. For https://github.com/suitenumerique/meet/pull/1030 --- CHANGELOG.md | 1 + src/backend/pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae5323ba..47178b5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ and this project adheres to - ⬆️(backend) update python dependencies #1011 - ♿️(frontend) fix focus ring on tab container components #1012 - ♿️(frontend) upgrade join meeting modal accessibility #1027 +- ⬆️(python) bump minimal required python version to 3.13 #1033 ### Fixed diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index fca4727f..85303ca2 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -17,13 +17,13 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.13", ] description = "A simple video and phone conferencing tool, powered by LiveKit" keywords = ["Django", "Contacts", "Templates", "RBAC"] license = { file = "LICENSE" } readme = "README.md" -requires-python = ">=3.10" +requires-python = ">=3.13" dependencies = [ "boto3==1.42.49", "Brotli==1.2.0",