Upgrades packages locked to old versions

This commit is contained in:
Trenton H
2025-02-28 13:37:28 -08:00
parent 50f493c12d
commit bbbea48c34
3 changed files with 240 additions and 225 deletions

View File

@@ -11,61 +11,64 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"bleach~=6.1.0",
"bleach~=6.2.0",
"celery[redis]~=5.4.0",
"channels~=4.1",
"channels~=4.2",
"channels-redis~=4.2",
"concurrent-log-handler~=0.9.25",
"dateparser~=1.2",
# WARNING: django does not use semver.
# Only patch versions are guaranteed to not introduce breaking changes.
"django~=5.1.1",
"django-allauth[socialaccount,mfa]~=65.0.2",
"django~=5.1.6",
"django-allauth[socialaccount,mfa]~=65.4.0",
"django-auditlog~=3.0.0",
"django-celery-results~=2.5.1",
"django-compression-middleware~=0.5.0",
"django-cors-headers~=4.4.0",
"django-cors-headers~=4.7.0",
"django-extensions~=3.2.3",
"django-filter~=24.3",
"django-filter~=25.1",
"django-guardian~=2.4.0",
"django-multiselectfield~=0.1.13",
"django-soft-delete~=1.0.15",
"django-soft-delete~=1.0.18",
"djangorestframework~=3.15",
"djangorestframework-guardian~=0.3.0",
"drf-spectacular>=0.28",
"drf-spectacular-sidecar>=2025.2.1",
"drf-writable-nested~=0.7.0",
"filelock~=3.16.1",
"drf-spectacular~=0.28",
"drf-spectacular-sidecar~=2025.2.1",
"drf-writable-nested~=0.7.1",
"filelock~=3.17.0",
"flower~=2.0.1",
"gotenberg-client~=0.6.0",
"granian>=1.7.6",
"httpx-oauth~=0.15",
"imap-tools~=1.7.3",
"gotenberg-client~=0.9.0",
"httpx-oauth~=0.16",
"imap-tools~=1.10.0",
"inotifyrecursive~=0.3",
"jinja2>=3.1.4",
"jinja2~=3.1.5",
"langdetect~=1.0.9",
"mysqlclient~=2.2.4",
"mysqlclient~=2.2.7",
"nltk~=3.9.1",
"ocrmypdf~=16.5.0",
"pathvalidate~=3.2.1",
"ocrmypdf~=16.9.0",
"pathvalidate~=3.2.3",
"pdf2image~=1.17.0",
"psycopg[c]==3.2.2",
"psycopg[c]==3.2.4",
"python-dateutil~=2.9.0",
"python-dotenv~=1.0.1",
"python-gnupg~=0.5.3",
"python-gnupg~=0.5.4",
"python-ipware~=3.0.0",
"python-magic~=0.4.27",
"pyzbar~=0.1.9",
"rapidfuzz~=3.10.0",
"redis[hiredis]~=5.1.1",
"scikit-learn~=1.5.2",
"setproctitle~=1.3.3",
"tika-client~=0.6.0",
"tqdm~=4.66.5",
"watchdog~=4.0",
"whitenoise~=6.7",
"rapidfuzz~=3.12.1",
"redis[hiredis]~=5.2.1",
"scikit-learn~=1.6.1",
"setproctitle~=1.3.4",
"tika-client~=0.9.0",
"tqdm~=4.67.1",
"watchdog~=6.0",
"whitenoise~=6.9",
"whoosh~=2.7",
"zxing-cpp~=2.2.0",
"zxing-cpp~=2.3.0",
]
optional-dependencies.webserver = [
"granian~=1.7.6",
]
[dependency-groups]
@@ -73,8 +76,8 @@ dependencies = [
test = [
"factory-boy~=3.3.1",
"pytest~=8.3.3",
"pytest-cov~=5.0.0",
"pytest-django~=4.9.0",
"pytest-cov~=6.0.0",
"pytest-django~=4.10.0",
"pytest-httpx",
"pytest-env",
"pytest-sugar",
@@ -86,14 +89,14 @@ test = [
]
lint = [
"pre-commit~=4.0.0",
"pre-commit~=4.1.0",
"pre-commit-uv~=4.1.3",
"ruff~=0.9.9",
]
docs = [
"mkdocs-material",
"mkdocs-glightbox",
"mkdocs-material~=9.6.4",
"mkdocs-glightbox~=0.4.0",
]
[tool.uv]