Skip to content

Commit b0ab5cb

Browse files
committed
libs updated, docker-compose fixed, added
1 parent 2a60325 commit b0ab5cb

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

docker-compose.yml

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ services:
2020
- redis
2121
volumes:
2222
- ./src/app:/code/app
23+
- ./src/.env:/code/.env
2324

2425
worker:
2526
build:
@@ -33,6 +34,7 @@ services:
3334
- redis
3435
volumes:
3536
- ./src/app:/code/app
37+
- ./src/.env:/code/.env
3638

3739
db:
3840
image: postgres:13

pyproject.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,27 @@ packages = [{ include = "src" }]
1010
[tool.poetry.dependencies]
1111
python = "^3.11"
1212
python-dotenv = "^1.0.0"
13-
pydantic = { extras = ["email"], version = "^2.4.1" }
13+
pydantic = { extras = ["email"], version = "^2.6.1" }
1414
fastapi = "^0.109.1"
15-
uvicorn = "^0.23.2"
16-
uvloop = "^0.17.0"
17-
httptools = "^0.6.0"
15+
uvicorn = "^0.27.0"
16+
uvloop = "^0.19.0"
17+
httptools = "^0.6.1"
1818
uuid = "^1.30"
19-
alembic = "^1.12.0"
20-
asyncpg = "^0.28.0"
19+
alembic = "^1.13.1"
20+
asyncpg = "^0.29.0"
2121
SQLAlchemy-Utils = "^0.41.1"
2222
python-jose = "^3.3.0"
23-
SQLAlchemy = "^2.0.21"
23+
SQLAlchemy = "^2.0.25"
2424
pytest = "^7.4.2"
25-
python-multipart = "^0.0.7"
25+
python-multipart = "^0.0.9"
2626
greenlet = "^2.0.2"
27-
httpx = "^0.25.0"
27+
httpx = "^0.26.0"
2828
pydantic-settings = "^2.0.3"
2929
redis = "^5.0.1"
3030
arq = "^0.25.0"
3131
gunicorn = "^21.2.0"
3232
bcrypt = "^4.1.1"
33-
fastcrud = "^0.4.0"
33+
fastcrud = "^0.5.0"
3434

3535

3636
[build-system]

0 commit comments

Comments
 (0)