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.
This commit is contained in:
Mark Felder
2026-06-09 12:38:07 -07:00
parent 9da3f5c235
commit 8e3c18019b
+1 -1
View File
@@ -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]