Merge pull request #1627 from pbiering/remove-unused-dateutil-references

remove unused dateutil references
This commit is contained in:
Peter Bieringer 2024-11-21 07:09:10 +00:00 committed by GitHub
commit e4daddc186
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 2 additions and 4 deletions

View file

@ -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

View file

@ -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",
] ]

View file

@ -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()

View file

@ -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"]