setup: drop leftover dependency "packaging"

Fixes: 6690e9e3ca ("radicale/utils: drop bcrypt compat check")

Signed-off-by: Henning Schild <henning@hennsch.de>
This commit is contained in:
Henning Schild
2026-04-15 12:09:56 +02:00
parent 923672f0c7
commit a59f05e153
3 changed files with 1 additions and 3 deletions

View File

@@ -4,7 +4,7 @@
* Fix: broken storage/mtime granularity detection on vfat * Fix: broken storage/mtime granularity detection on vfat
* Improve: `path_to_filesystem()` by pre-detection of collision-free file system * Improve: `path_to_filesystem()` by pre-detection of collision-free file system
* Adjustment: MKCOL/MKCALENDAR return now CONFLICT instead of BADREQUEST of file name collision * Adjustment: MKCOL/MKCALENDAR return now CONFLICT instead of BADREQUEST of file name collision
* Improve: [auth] catch bcrypt>=5.0.0 enforced max password length early and support legacy "passlib" as well as "libpass" (rework 3.6.0) * Improve: [auth] catch bcrypt>=5.0.0 enforced max password length early and support legacy "passlib" as well as "libpass" (rework 3.6.0, "packaging" not needed anymore)
## 3.7.1 ## 3.7.1
* Fix: share address book collection as birthday calendar not working on non-DEBUG level * Fix: share address book collection as birthday calendar not working on non-DEBUG level

View File

@@ -35,7 +35,6 @@ dependencies = [
"vobject>=0.9.6", "vobject>=0.9.6",
"pika>=1.1.0", "pika>=1.1.0",
"requests", "requests",
"packaging",
] ]

View File

@@ -41,7 +41,6 @@ web_files = ["web/internal_data/css/icon.png",
install_requires = ["defusedxml", "libpass>=1.9.3", "vobject>=0.9.6", install_requires = ["defusedxml", "libpass>=1.9.3", "vobject>=0.9.6",
"pika>=1.1.0", "pika>=1.1.0",
"requests", "requests",
"packaging",
] ]
bcrypt_requires = ["bcrypt"] bcrypt_requires = ["bcrypt"]
argon2_requires = ["argon2-cffi"] argon2_requires = ["argon2-cffi"]