Skip to content

Commit 4c17a0e

Browse files
mscolnickmanzt
andauthored
fix: restrict uvicorn version to avoid notebook creation issues (#6453) (#6467)
Fixes #6453 Updated the uvicorn dependency in pyproject.toml to specify a version range of >=0.22.0,<0.36.0 to prevent issues with notebook creation introduced in version 0.36.0. --------- Co-authored-by: Trevor Manz <[email protected]>
1 parent ab06c47 commit 4c17a0e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ dependencies = [
2727
"pyyaml>=6.0",
2828
# web server
2929
# - 0.22.0 introduced timeout-graceful-shutdown, which we use
30-
"uvicorn >= 0.22.0",
30+
# - 0.36.0 fails to create new notebooks, see https://github.com/marimo-team/marimo/issues/6453
31+
"uvicorn>=0.22.0,<0.36.0",
3132
# web framework
3233
# - 0.29.0 introduced Middleware kwargs, which we use
3334
# - starlette 0.36.0 introduced a bug

0 commit comments

Comments
 (0)