fix: pin starlette<1.0 to prevent startup crash (#648)
Starlette 1.0.0 removed the @app.middleware() decorator, which breaks nextcloud-mcp-server on fresh installs. Pin starlette<1.0 until we address the full set of breaking changes. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
2be63a85e5
commit
b6d01fc0bd
@@ -2120,6 +2120,7 @@ dependencies = [
|
||||
{ name = "python-json-logger" },
|
||||
{ name = "pythonvcard4" },
|
||||
{ name = "qdrant-client" },
|
||||
{ name = "starlette" },
|
||||
]
|
||||
|
||||
[package.dev-dependencies]
|
||||
@@ -2171,6 +2172,7 @@ requires-dist = [
|
||||
{ name = "python-json-logger", specifier = ">=3.2.0" },
|
||||
{ name = "pythonvcard4", specifier = ">=0.2.0" },
|
||||
{ name = "qdrant-client", specifier = ">=1.17.0" },
|
||||
{ name = "starlette", specifier = "<1.0" },
|
||||
]
|
||||
|
||||
[package.metadata.requires-dev]
|
||||
|
||||
Reference in New Issue
Block a user