From 70fa866b8d71ea67d849057340fb0b91a3a530c8 Mon Sep 17 00:00:00 2001 From: Xarvex Date: Fri, 22 Aug 2025 23:27:30 -0500 Subject: [PATCH] fix(pyproject): allow Python 3.13 to function --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2cfb10a3..446c65a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,8 +8,9 @@ description = "A User-Focused Photo & File Management System." version = "9.5.3" license = "GPL-3.0-only" readme = "README.md" -requires-python = ">=3.12,<3.13" +requires-python = ">=3.12,<3.14" dependencies = [ + "audioop-lts; python_version >= '3.13'", "chardet~=5.2", "ffmpeg-python~=0.2", "humanfriendly==10.*",