misc: Allow minor upgrades for backend dependencies

This commit is contained in:
Michael Manganiello
2025-09-04 23:31:57 -03:00
parent 08927789f2
commit 7b1cd8a079
2 changed files with 16 additions and 16 deletions

View File

@@ -11,18 +11,18 @@ requires-python = ">=3.13"
readme = "README.md"
license = "GNU AGPLv3"
dependencies = [
"PyYAML == 6.0.1",
"PyYAML ~= 6.0",
"SQLAlchemy[mariadb-connector,mysql-connector,postgresql-psycopg] ~= 2.0",
"Unidecode == 1.3.8",
"Unidecode ~= 1.3",
"aiohttp ~= 3.12",
"alembic == 1.13.1",
"alembic ~= 1.13",
"anyio ~= 4.4",
"authlib ~= 1.3",
"colorama ~= 0.4",
"defusedxml ~= 0.7.1",
"defusedxml ~= 0.7",
"fastapi-pagination[sqlalchemy] ~= 0.12",
"fastapi[standard-no-fastapi-cloud-cli] ~= 0.116",
"gunicorn == 23.0.0",
"gunicorn ~= 23.0",
"httpx ~= 0.27",
"joserfc ~= 1.2",
"opentelemetry-distro ~= 0.56",
@@ -36,9 +36,9 @@ dependencies = [
"pillow ~= 10.3",
"psycopg[c] ~= 3.2",
"pydash ~= 7.0",
"python-dotenv == 1.0.1",
"python-dotenv ~= 1.0",
"python-magic ~= 0.4",
"python-socketio == 5.11.1",
"python-socketio ~= 5.11",
"redis ~= 6.2",
"rq ~= 2.1",
# TODO: Move back to upstream `rq-scheduler`, when support for username and SSL settings is added.
@@ -47,7 +47,7 @@ dependencies = [
"sentry-sdk ~= 2.32",
"starlette-csrf ~= 3.0",
"streaming-form-data ~= 1.19",
"strsimpy>=0.2.1",
"strsimpy ~= 0.2",
"types-colorama ~= 0.4",
"types-passlib ~= 1.7",
"types-pyyaml ~= 6.0",

16
uv.lock generated
View File

@@ -1958,15 +1958,15 @@ test = [
[package.metadata]
requires-dist = [
{ name = "aiohttp", specifier = "~=3.12" },
{ name = "alembic", specifier = "==1.13.1" },
{ name = "alembic", specifier = "~=1.13" },
{ name = "anyio", specifier = "~=4.4" },
{ name = "authlib", specifier = "~=1.3" },
{ name = "colorama", specifier = "~=0.4" },
{ name = "defusedxml", specifier = "~=0.7.1" },
{ name = "defusedxml", specifier = "~=0.7" },
{ name = "fakeredis", marker = "extra == 'test'", specifier = "~=2.21" },
{ name = "fastapi", extras = ["standard-no-fastapi-cloud-cli"], specifier = "~=0.116" },
{ name = "fastapi-pagination", extras = ["sqlalchemy"], specifier = "~=0.12" },
{ name = "gunicorn", specifier = "==23.0.0" },
{ name = "gunicorn", specifier = "~=23.0" },
{ name = "httpx", specifier = "~=0.27" },
{ name = "ipdb", marker = "extra == 'dev'", specifier = "~=0.13" },
{ name = "ipykernel", marker = "extra == 'dev'", specifier = "~=6.29" },
@@ -1991,10 +1991,10 @@ requires-dist = [
{ name = "pytest-env", marker = "extra == 'test'", specifier = "~=1.1" },
{ name = "pytest-mock", marker = "extra == 'test'", specifier = "~=3.12" },
{ name = "pytest-recording", marker = "extra == 'test'", specifier = "~=0.13" },
{ name = "python-dotenv", specifier = "==1.0.1" },
{ name = "python-dotenv", specifier = "~=1.0" },
{ name = "python-magic", specifier = "~=0.4" },
{ name = "python-socketio", specifier = "==5.11.1" },
{ name = "pyyaml", specifier = "==6.0.1" },
{ name = "python-socketio", specifier = "~=5.11" },
{ name = "pyyaml", specifier = "~=6.0" },
{ name = "redis", specifier = "~=6.2" },
{ name = "rq", specifier = "~=2.1" },
{ name = "rq-scheduler", git = "https://github.com/adamantike/rq-scheduler.git?rev=feat%2Fscript-options-username-ssl" },
@@ -2002,12 +2002,12 @@ requires-dist = [
{ name = "sqlalchemy", extras = ["mariadb-connector", "mysql-connector", "postgresql-psycopg"], specifier = "~=2.0" },
{ name = "starlette-csrf", specifier = "~=3.0" },
{ name = "streaming-form-data", specifier = "~=1.19" },
{ name = "strsimpy", specifier = ">=0.2.1" },
{ name = "strsimpy", specifier = "~=0.2" },
{ name = "types-colorama", specifier = "~=0.4" },
{ name = "types-passlib", specifier = "~=1.7" },
{ name = "types-pyyaml", specifier = "~=6.0" },
{ name = "types-redis", specifier = "~=4.6" },
{ name = "unidecode", specifier = "==1.3.8" },
{ name = "unidecode", specifier = "~=1.3" },
{ name = "user-agents", specifier = "~=2.2" },
{ name = "uvicorn", specifier = "~=0.35" },
{ name = "uvicorn-worker", specifier = "~=0.3" },