From 8e3c18019be85f170fb8e4818ec4eac0020037f1 Mon Sep 17 00:00:00 2001 From: Mark Felder Date: Tue, 9 Jun 2026 12:38:07 -0700 Subject: [PATCH] fix: crypt-r dependency was declared for wrong Python version The original crypt library was last supported in Python 3.12, so it's not needed until Python 3.13 is default (Trixie) > The crypt_r module is a renamed copy of the crypt module as it was present in Python 3.12 before it was removed. --- chatmaild/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatmaild/pyproject.toml b/chatmaild/pyproject.toml index a2877ec7..5f7cbb74 100644 --- a/chatmaild/pyproject.toml +++ b/chatmaild/pyproject.toml @@ -9,7 +9,7 @@ dependencies = [ "iniconfig", "filelock", "requests", - "crypt-r >= 3.13.1 ; python_version >= '3.11'", + "crypt-r >= 3.13.1 ; python_version >= '3.13'", ] [tool.setuptools]