Skip to content
Merged
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
6 changes: 2 additions & 4 deletions poe_tasks.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,11 @@ sequence = [

[tasks.docs-build]
help = "Build documentation"
cmd = "zensical build"
executor = { type = "uv", group = "docs" }
Copy link
Copy Markdown
Collaborator

@anuraaga anuraaga Apr 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stefanvanburen Looks like the schema change for executor had some regression for our usage. Though since the unit test is passing in schemastore wonder how that would happen

https://github.com/connectrpc/connect-python/actions/runs/24320772240/job/71006432940?pr=210

cmd = "uv run --group docs zensical build"

[tasks.docs-serve]
help = "Start documentation local server"
cmd = "zensical serve"
executor = { type = "uv", group = "docs" }
cmd = "uv run --group docs zensical serve"

[tasks.format]
help = "Apply all possible auto-formatting to files"
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,17 @@ dev = [
"brotli==1.2.0",
"connect-python-example",
"daphne==4.2.1",
"granian==2.7.2",
"granian==2.7.3",
"grpcio-tools==1.80.0",
"gunicorn==25.3.0",
"hypercorn==0.18.0",
"poethepoet==0.44.0",
"pyright[nodejs]==1.1.408",
"pyvoy==0.3.0",
"ruff==0.15.9",
"tombi==0.9.14",
"ruff==0.15.10",
"tombi==0.9.17",
"typing_extensions==4.15.0",
"uvicorn==0.43.0",
"uvicorn==0.44.0",
"zstandard==0.25.0",

# dev dependencies only used in subprojects. Optimal structure would include these
Expand All @@ -75,7 +75,7 @@ dev = [
"pytest-timeout",
]

docs = ["mkdocstrings-python==2.0.3", "zensical==0.0.31"]
docs = ["mkdocstrings-python==2.0.3", "zensical==0.0.32"]

[build-system]
requires = ["uv_build>=0.11.0,<0.12.0"]
Expand Down
Loading
Loading