Skip to content

Commit 790ee09

Browse files
committed
Fix dependencies
1 parent 180afd7 commit 790ee09

2 files changed

Lines changed: 21 additions & 13 deletions

File tree

pyproject.toml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,10 @@ exclude = ["docs", "tests"]
6565

6666
[project.optional-dependencies]
6767
server = [
68-
"fastapi~=0.135.1",
69-
"uvicorn>=0.41,<0.43",
68+
"fastapi~=0.135.2",
69+
# starlette 1.0.0 break cookies
70+
"starlette<1.0",
71+
"uvicorn~=0.42.0",
7072
"starlette-exporter~=0.23.0",
7173
"asgi-correlation-id~=4.3.4",
7274
"pyjwt~=2.12.1",
@@ -79,8 +81,10 @@ consumer = [
7981
"cramjam~=2.11.0",
8082
]
8183
http2kafka = [
82-
"fastapi~=0.135.1",
83-
"uvicorn>=0.41,<0.43",
84+
"fastapi~=0.135.2",
85+
# starlette 1.0.0 break cookies
86+
"starlette<1.0",
87+
"uvicorn~=0.42.0",
8488
"starlette-exporter~=0.23.0",
8589
"asgi-correlation-id~=4.3.4",
8690
"faststream[kafka,cli]~=0.6.5",
@@ -93,7 +97,7 @@ gssapi = [
9397
"gssapi~=1.11.1",
9498
]
9599
seed = [
96-
"faker>=40.8.1,<40.12.0"
100+
"faker~=40.11.1"
97101
]
98102

99103
[dependency-groups]

uv.lock

Lines changed: 12 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)