remove pytest-asyncio

This commit is contained in:
Jakub Miazek
2024-02-17 19:29:31 +01:00
parent 2325704232
commit 7f0261fba1
2 changed files with 189 additions and 203 deletions

View File

@@ -8,16 +8,16 @@ license = "MIT"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "0.109.0"
pydantic = {version = "2.6.0", extras = ["email"]}
pydantic-settings = "2.1.0"
sqlalchemy = "2.0.25"
uvicorn = { version = "0.27.0", extras = ["standard"]}
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"]}
asyncpg = "0.29.0"
alembic = "1.13.1"
httpx = "0.26.0"
pytest = "8.0.0"
pytest-cov = "4.1.0"
pytest-asyncio = "0.23.4"
uvloop = "0.19.0"
httptools = "0.6.1"
rich = "13.7.0"
@@ -25,7 +25,7 @@ pyjwt = {version = "2.8.0", extras = ["cryptography"]}
redis = "5.0.1"
passlib = {version = "^1.7.4", extras = ["bcrypt"]}
sourcery = "^1.15.0"
polars = "^0.20.8"
polars = "^0.20.9"
python-multipart = "^0.0.9"
fastexcel = "^0.9.0"
@@ -36,7 +36,7 @@ pyupgrade = "*"
ipython = "*"
ruff = "*"
psycopg2-binary = "*"
sqlacodegen = "3.0.0rc3"
sqlacodegen = "3.0.0rc4"
[tool.poetry.group.dev.dependencies]