Compare commits

...

3 Commits

Author SHA1 Message Date
Xarvex
aa9917de9e fix(nix): add forgotten audioop-lts 2025-08-24 18:12:48 -05:00
Xarvex
3d62e592f7 chore(nix): use Python 3.13 2025-08-24 18:10:44 -05:00
Xarvex
70fa866b8d fix(pyproject): allow Python 3.13 to function 2025-08-24 18:09:48 -05:00
3 changed files with 4 additions and 2 deletions

View File

@@ -28,7 +28,7 @@
perSystem =
{ pkgs, ... }:
let
python3 = pkgs.python312;
python3 = pkgs.python313;
in
{
packages =

View File

@@ -86,6 +86,7 @@ python3Packages.buildPythonApplication {
dependencies =
with python3Packages;
[
audioop-lts
chardet
ffmpeg-python
humanfriendly

View File

@@ -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.*",