mirror of
https://github.com/chatmail/relay.git
synced 2026-06-09 21:21:09 +00:00
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:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user