From ebbed1cbe23771354ef75bee7614fbbd4ad076f7 Mon Sep 17 00:00:00 2001 From: Xubin Ren Date: Fri, 17 Apr 2026 08:58:32 +0000 Subject: [PATCH] fix(docs): depend on nanobot-ai, not the unrelated nanobot package MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- docs/CHANNEL_PLUGIN_GUIDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CHANNEL_PLUGIN_GUIDE.md b/docs/CHANNEL_PLUGIN_GUIDE.md index 70087f33..12a41685 100644 --- a/docs/CHANNEL_PLUGIN_GUIDE.md +++ b/docs/CHANNEL_PLUGIN_GUIDE.md @@ -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"