mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
remove unused dateutil references https://github.com/Kozea/Radicale/issues/1626
This commit is contained in:
parent
8fea1f907e
commit
c13e0e60fd
3 changed files with 1 additions and 3 deletions
|
@ -33,7 +33,6 @@ dependencies = [
|
|||
"defusedxml",
|
||||
"passlib",
|
||||
"vobject>=0.9.6",
|
||||
"python-dateutil>=2.7.3",
|
||||
"pika>=1.1.0",
|
||||
]
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ from radicale.item import filter as radicale_filter
|
|||
|
||||
INTERNAL_TYPES: Sequence[str] = ("multifilesystem", "multifilesystem_nolock",)
|
||||
|
||||
CACHE_DEPS: Sequence[str] = ("radicale", "vobject", "python-dateutil",)
|
||||
CACHE_DEPS: Sequence[str] = ("radicale", "vobject")
|
||||
CACHE_VERSION: bytes = "".join(
|
||||
"%s=%s;" % (pkg, utils.package_version(pkg))
|
||||
for pkg in CACHE_DEPS).encode()
|
||||
|
|
|
@ -36,7 +36,6 @@ web_files = ["web/internal_data/css/icon.png",
|
|||
"web/internal_data/index.html"]
|
||||
|
||||
install_requires = ["defusedxml", "passlib", "vobject>=0.9.6",
|
||||
"python-dateutil>=2.7.3",
|
||||
"pika>=1.1.0",
|
||||
]
|
||||
bcrypt_requires = ["bcrypt"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue