fix(docs): depend on nanobot-ai, not the unrelated nanobot package

The PyPI package `nanobot` is a different project ("Minimalist robot
navigation framework"), not this one. This project publishes as
`nanobot-ai` (see pyproject.toml). Following the guide as-written would
pull down the wrong package — flagged by vansatchen in #3188.

Same toml block as the build-backend fix, one-word change.

Made-with: Cursor
This commit is contained in:
Xubin Ren
2026-04-17 17:08:34 +08:00
committed by Xubin Ren
parent 19c1facf7f
commit ebbed1cbe2
+1 -1
View File
@@ -135,7 +135,7 @@ class WebhookChannel(BaseChannel):
[project]
name = "nanobot-channel-webhook"
version = "0.1.0"
dependencies = ["nanobot", "aiohttp"]
dependencies = ["nanobot-ai", "aiohttp"]
[project.entry-points."nanobot.channels"]
webhook = "nanobot_channel_webhook:WebhookChannel"