Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
265 changes: 152 additions & 113 deletions authentication/fastapi-keyclock/poetry.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ python-jose==3.3.0
psycopg2-binary==2.9.9
email-validator==2.1.2
bcrypt==4.1.3
python-multipart==0.0.9
python-multipart==0.0.22



Expand Down
209 changes: 159 additions & 50 deletions backend_essentials/fastapi_cache/app/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion backend_essentials/fastapi_cache/app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ asyncpg = "^0.27.0"
diskcache = "^5.6.3"

[tool.poetry.dev-dependencies]
black = "^23.3.0"
black = "^26.3.1"
flake8 = "^6.0.0"
isort = "^5.12.0"

Expand Down
1,163 changes: 655 additions & 508 deletions design_patterns/fastapi-ddd-example/poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions design_patterns/fastapi-ddd-example/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ fastapi = "^0.74.0"
uvicorn = {extras = ["standard"], version = "^0.17.5"}
dependency-injector = {extras = ["yaml"], version = "^4.38.0"}
loguru = "^0.6.0"
orjson = "^3.6.7"
orjson = "^3.11.5"
python-mf-data = {extras = ["rdb"], version = "^0.2.5"}
asyncpgsa = "^0.27.1"

[tool.poetry.dev-dependencies]
black = "^22.1.0"
black = "^26.3.1"

[tool.black]
line-length = 100
Expand Down
302 changes: 175 additions & 127 deletions full-stack-fastapi-template/backend/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion full-stack-fastapi-template/backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = ["Admin <admin@example.com>"]
python = "^3.10"
uvicorn = {extras = ["standard"], version = "^0.24.0.post1"}
fastapi = "^0.109.1"
python-multipart = "^0.0.7"
python-multipart = "^0.0.22"
email-validator = "^2.1.0.post1"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
tenacity = "^8.2.3"
Expand Down
2 changes: 1 addition & 1 deletion sample_projects/fastapi-movie-api/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ anyio==3.7.1 ; python_version >= "3.9" and python_version < "4.0"
cffi==1.15.1 ; python_version >= "3.9" and python_version < "4.0"
click==8.1.6 ; python_version >= "3.9" and python_version < "4.0"
colorama==0.4.6 ; python_version >= "3.9" and python_version < "4.0" and platform_system == "Windows"
cryptography==41.0.3 ; python_version >= "3.9" and python_version < "4.0"
cryptography==46.0.5 ; python_version >= "3.9" and python_version < "4.0"
deprecated==1.2.14 ; python_version >= "3.9" and python_version < "4.0"
ecdsa==0.19.1 ; python_version >= "3.9" and python_version < "4.0"
exceptiongroup==1.1.2 ; python_version >= "3.9" and python_version < "3.11"
Expand Down
139 changes: 103 additions & 36 deletions sample_projects/fastapi_grpc/app/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample_projects/fastapi_grpc/app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ grpcio-tools = "^1.51.1"


[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
black = "^26.3.1"
isort = "^5.13.2"

[build-system]
Expand Down
4 changes: 2 additions & 2 deletions sample_projects/geoip/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aiohttp==3.12.15 ; python_version >= "3.9" and python_version < "4.0"
aiohttp==3.13.3 ; python_version >= "3.9" and python_version < "4.0"
aiosignal==1.3.1 ; python_version >= "3.9" and python_version < "4.0"
anyio==4.1.0 ; python_version >= "3.9" and python_version < "4.0"
async-timeout==4.0.3 ; python_version >= "3.9" and python_version < "3.11"
Expand Down Expand Up @@ -26,6 +26,6 @@ setuptools==80.9.0 ; python_version >= "3.9" and python_version < "4.0"
sniffio==1.3.0 ; python_version >= "3.9" and python_version < "4.0"
starlette==0.48.0 ; python_version >= "3.9" and python_version < "4.0"
typing-extensions==4.8.0 ; python_version >= "3.9" and python_version < "4.0"
urllib3==2.5.0 ; python_version >= "3.9" and python_version < "4.0"
urllib3==2.6.3 ; python_version >= "3.9" and python_version < "4.0"
uvicorn==0.22.0 ; python_version >= "3.9" and python_version < "4.0"
yarl==1.9.3 ; python_version >= "3.9" and python_version < "4.0"
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
asyncio==3.4.3
aiohttp==3.12.15
aiohttp==3.13.3
uvloop==0.15.3
fastapi==0.109.1
uvicorn[standard]==0.14.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
asyncio==3.4.3
aiohttp==3.12.14
aiohttp==3.13.3
configloader==1.0.1
faust[rocksdb, fast, uvloop]==1.10.4
prometheus-client===0.11.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
asyncio==3.4.3
aiohttp==3.12.14
aiohttp==3.13.3
configloader==1.0.1
faust[rocksdb, fast, uvloop]==1.10.4
prometheus-client===0.11.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
asyncio==3.4.3
aiohttp==3.12.14
aiohttp==3.13.3
configloader==1.0.1
faust[rocksdb, fast, uvloop]==1.10.4
prometheus-client===0.11.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
asyncio==3.4.3
aiohttp==3.12.14
aiohttp==3.13.3
configloader==1.0.1
faust[rocksdb, fast, uvloop]==1.10.4
prometheus-client===0.11.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
asyncio==3.4.3
aiohttp==3.12.15
aiohttp==3.13.3
uvloop==0.15.3
fastapi==0.109.1
uvicorn[standard]==0.14.0
Expand Down
263 changes: 157 additions & 106 deletions sample_projects/til_board/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample_projects/til_board/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ alembic = "^1.13.1"
dependency-injector = "^4.41.0"
pydantic = {extras = ["email"], version = "^2.5.3"}
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
python-multipart = "^0.0.7"
python-multipart = "^0.0.22"
python-dotenv = "^1.0.0"
pydantic-settings = "^2.1.0"
celery = "^5.3.6"
Expand Down
12 changes: 6 additions & 6 deletions sql-db/fastapi-quadtree-db/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions sql-db/fastapi-sqlalchemy-asyncpg/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading