bump project deps

This commit is contained in:
Jakub Miazek 2024-03-20 13:19:11 +01:00
parent a11c38e04e
commit c97ca91e7f
2 changed files with 307 additions and 449 deletions

729
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,32 +1,29 @@
[tool.poetry]
name = "fastapi-sqlalchemy-asyncpg"
version = "0.0.7"
version = "0.0.8"
description = ""
authors = ["Jakub Miazek <the@grillazz.com>"]
packages = []
license = "MIT"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "0.109.2"
pydantic = {version = "2.6.1", extras = ["email"]}
pydantic-settings = "2.2.0"
sqlalchemy = "2.0.27"
uvicorn = { version = "0.27.1", extras = ["standard"]}
python = "^3.11"
fastapi = "0.110.0"
pydantic = {version = "2.6.4", extras = ["email"]}
pydantic-settings = "2.2.1"
sqlalchemy = "2.0.28"
uvicorn = { version = "0.29.0", extras = ["standard"]}
asyncpg = "0.29.0"
alembic = "1.13.1"
httpx = "0.26.0"
pytest = "8.0.0"
httpx = "0.27.0"
pytest-cov = "4.1.0"
pytest-asyncio = "0.23.6"
uvloop = "0.19.0"
httptools = "0.6.1"
rich = "13.7.0"
rich = "13.7.1"
pyjwt = {version = "2.8.0", extras = ["cryptography"]}
redis = "5.0.1"
redis = "5.0.3"
passlib = {version = "^1.7.4", extras = ["bcrypt"]}
polars = "^0.20.9"
python-multipart = "^0.0.9"
fastexcel = "^0.9.0"
[tool.poetry.dev-dependencies]
devtools = { extras = ["pygments"], version = "*" }
@ -35,7 +32,7 @@ pyupgrade = "*"
ipython = "*"
ruff = "*"
psycopg2-binary = "*"
sqlacodegen = "3.0.0rc4"
sqlacodegen = "3.0.0rc5"
[tool.poetry.group.dev.dependencies]