chore: update dependencies and ignore new warning in tests

ignore JWT related warning that was introduced when updating
dependencies related to JWT secret size (test value of "secret" is too
short).
This commit is contained in:
2026-03-09 14:21:37 -04:00
parent 10eaf84329
commit 2de0aac23a
3 changed files with 530 additions and 449 deletions

View File

@@ -8,7 +8,7 @@ authors = [
]
requires-python = ">=3.13"
dependencies = [
"advanced-alchemy==1.8.0",
"advanced-alchemy>=1.8.0",
"aiofiles>=24.1.0",
"asyncpg>=0.30.0",
"ebooklib>=0.19",
@@ -41,3 +41,6 @@ dev = [
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
filterwarnings = [
"ignore::jwt.warnings.InsecureKeyLengthWarning",
]