bump project deps

This commit is contained in:
Jakub Miazek 2024-08-30 18:25:09 +02:00
parent 18b9a43fa2
commit eaeef3abc6
3 changed files with 481 additions and 471 deletions

936
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -8,31 +8,31 @@ license = "MIT"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.12" python = "^3.12"
fastapi = {version = "^0.112.1", extras = ["all"]} fastapi = {version = "^0.112.2", extras = ["all"]}
pydantic = {version = "^2.8.2", extras = ["email"]} pydantic = {version = "^2.8.2", extras = ["email"]}
pydantic-settings = "^2.4.0" pydantic-settings = "^2.4.0"
sqlalchemy = "^2.0.32" sqlalchemy = "^2.0.32"
uvicorn = { version = "^0.30.6", extras = ["standard"]} uvicorn = { version = "^0.30.6", extras = ["standard"]}
asyncpg = "^0.29.0" asyncpg = "^0.29.0"
alembic = "^1.13.2" alembic = "^1.13.2"
httpx = "^0.27.0" httpx = "^0.27.2"
pytest = "^8.3.2" pytest = "^8.3.2"
pytest-cov = "^5.0.0" pytest-cov = "^5.0.0"
uvloop = "^0.20.0" uvloop = "^0.20.0"
httptools = "^0.6.1" httptools = "^0.6.1"
rich = "^13.7.1" rich = "^13.8.0"
pyjwt = {version = "^2.9.0", extras = ["cryptography"]} pyjwt = {version = "^2.9.0", extras = ["cryptography"]}
redis = "^5.0.8" redis = "^5.0.8"
passlib = {version = "^1.7.4", extras = ["bcrypt"]} passlib = {version = "^1.7.4", extras = ["bcrypt"]}
polars = "^1.5.0" polars = "^1.6.0"
python-multipart = "^0.0.9" python-multipart = "^0.0.9"
fastexcel = "^0.11.5" fastexcel = "^0.11.6"
fastapi-cache2 = {git = "https://github.com/yoco-tech/fastapi-cache.git", rev = "main"} fastapi-cache2 = {git = "https://github.com/yoco-tech/fastapi-cache.git", rev = "main"}
inline-snapshot = "^0.12.1" inline-snapshot = "^0.12.1"
dirty-equals = "^0.8.0" dirty-equals = "^0.8.0"
polyfactory = "^2.16.2" polyfactory = "^2.16.2"
granian = "^1.5.2" granian = "^1.5.2"
transformers = "^4.44.0" transformers = "^4.44.2"
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
devtools = { extras = ["pygments"], version = "^0.12.2" } devtools = { extras = ["pygments"], version = "^0.12.2" }

View File

@ -32,7 +32,7 @@ async def test_add_user(client: AsyncClient):
response.json()["access_token"], options={"verify_signature": False} response.json()["access_token"], options={"verify_signature": False}
) )
assert claimset["expiry"] == IsPositiveFloat() assert claimset["expiry"] == IsPositiveFloat()
assert claimset["platform"] == "python-httpx/0.27.0" assert claimset["platform"] == "python-httpx/0.27.2"
# TODO: parametrize test with diff urls including 404 and 401 # TODO: parametrize test with diff urls including 404 and 401
@ -45,7 +45,7 @@ async def test_get_token(client: AsyncClient):
) )
assert claimset["email"] == payload["email"] assert claimset["email"] == payload["email"]
assert claimset["expiry"] == IsPositiveFloat() assert claimset["expiry"] == IsPositiveFloat()
assert claimset["platform"] == "python-httpx/0.27.0" assert claimset["platform"] == "python-httpx/0.27.2"
# TODO: baerer token test # TODO: baerer token test