mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 14:17:35 +03:00
Merge pull request #1627 from pbiering/remove-unused-dateutil-references
remove unused dateutil references
This commit is contained in:
commit
e4daddc186
4 changed files with 2 additions and 4 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -6,7 +6,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12.3', '3.13.0-beta.4', pypy-3.8, pypy-3.9]
|
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12.3', '3.13.0', pypy-3.9]
|
||||||
exclude:
|
exclude:
|
||||||
- os: windows-latest
|
- os: windows-latest
|
||||||
python-version: pypy-3.8
|
python-version: pypy-3.8
|
||||||
|
|
|
@ -33,7 +33,6 @@ dependencies = [
|
||||||
"defusedxml",
|
"defusedxml",
|
||||||
"passlib",
|
"passlib",
|
||||||
"vobject>=0.9.6",
|
"vobject>=0.9.6",
|
||||||
"python-dateutil>=2.7.3",
|
|
||||||
"pika>=1.1.0",
|
"pika>=1.1.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ from radicale.item import filter as radicale_filter
|
||||||
|
|
||||||
INTERNAL_TYPES: Sequence[str] = ("multifilesystem", "multifilesystem_nolock",)
|
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(
|
CACHE_VERSION: bytes = "".join(
|
||||||
"%s=%s;" % (pkg, utils.package_version(pkg))
|
"%s=%s;" % (pkg, utils.package_version(pkg))
|
||||||
for pkg in CACHE_DEPS).encode()
|
for pkg in CACHE_DEPS).encode()
|
||||||
|
|
|
@ -36,7 +36,6 @@ web_files = ["web/internal_data/css/icon.png",
|
||||||
"web/internal_data/index.html"]
|
"web/internal_data/index.html"]
|
||||||
|
|
||||||
install_requires = ["defusedxml", "passlib", "vobject>=0.9.6",
|
install_requires = ["defusedxml", "passlib", "vobject>=0.9.6",
|
||||||
"python-dateutil>=2.7.3",
|
|
||||||
"pika>=1.1.0",
|
"pika>=1.1.0",
|
||||||
]
|
]
|
||||||
bcrypt_requires = ["bcrypt"]
|
bcrypt_requires = ["bcrypt"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue