Skip to content

Commit

Permalink
Merge pull request #1627 from pbiering/remove-unused-dateutil-references
Browse files Browse the repository at this point in the history
remove unused dateutil references
  • Loading branch information
pbiering authored Nov 21, 2024
2 parents 8fea1f9 + f7e46eb commit e4daddc
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
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:
- os: windows-latest
python-version: pypy-3.8
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ dependencies = [
"defusedxml",
"passlib",
"vobject>=0.9.6",
"python-dateutil>=2.7.3",
"pika>=1.1.0",
]

Expand Down
2 changes: 1 addition & 1 deletion radicale/storage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

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()
Expand Down
1 change: 0 additions & 1 deletion setup.py.legacy
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit e4daddc

Please sign in to comment.