From 9de9795fa6063e6c5e757a6c7024ef0f84c3d011 Mon Sep 17 00:00:00 2001 From: Arbos Date: Sun, 12 Jul 2026 12:07:03 -0600 Subject: [PATCH] Point docs at bittensor.com/docs and surface the supersession notice on PyPI docs.bittensor.com no longer resolves, and the PyPI page for bittensor-cli (which ranks highly in search) had no indication the package is superseded: the notice used GitHub-only alert syntax and was added after the last release, so it never reached PyPI. Rewrite it in plain markdown, link the bittensor package and bittensor.com/docs, absolutize the screenshot URL for PyPI rendering, and bump to 9.23.2 so a release can carry the new description. --- README.md | 15 +++++++++------ pyproject.toml | 4 +++- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5d3c0eed0..ecce3caed 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,10 @@ -> [!IMPORTANT] -> **This repository is archived and no longer maintained.** -> -> `btcli` is now part of the `bittensor` package (Bittensor 11), developed in the [subtensor monorepo](https://github.com/RaoFoundation/subtensor) (`sdk/python`). Existing `bittensor-cli` v9 releases remain installable from PyPI, but no further releases will be cut from this repository. +# ⚠️ This package is superseded + +**`bittensor-cli` is superseded by the [`bittensor`](https://pypi.org/project/bittensor/) package (Bittensor 11), which includes `btcli`.** New projects should `pip install bittensor` instead. Development happens in the [subtensor monorepo](https://github.com/RaoFoundation/subtensor) (`sdk/python`), and documentation lives at [bittensor.com/docs](https://bittensor.com/docs). + +Existing `bittensor-cli` v9 releases remain installable from PyPI, but this repository is no longer maintained and no further feature releases will be cut from it. + +---
@@ -31,13 +34,13 @@ The Bittensor CLI, `btcli`, is a powerful command line tool for the Bittensor platform. You can use it on any macOS, Linux or WSL terminal to manage all common operations like creating a wallet, registering a subnet or a neuron, delegating your TAO, viewing Senate proposals and voting for them, and much more. Help information can be invoked for every command and option with `--help` option. -![btcli screenshot](./assets/btcli-screenshot.png) +![btcli screenshot](https://raw.githubusercontent.com/RaoFoundation/btcli/main/assets/btcli-screenshot.png) --- ## Documentation -Installation steps are described below. For a full documentation on how to use `btcli`, see the [Bittensor CLI section](https://docs.bittensor.com/btcli) on the developer documentation site. +Installation steps are described below. For full documentation, see [bittensor.com/docs](https://bittensor.com/docs). --- diff --git a/pyproject.toml b/pyproject.toml index 067d4088c..2eb4c14a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "bittensor-cli" -version = "9.23.1" +version = "9.23.2" description = "Bittensor CLI" readme = "README.md" authors = [ @@ -55,6 +55,8 @@ dev = [ # more details can be found here homepage = "https://github.com/opentensor/btcli" Repository = "https://github.com/opentensor/btcli" +Documentation = "https://bittensor.com/docs" +Superseded-by = "https://pypi.org/project/bittensor/" [tool.pytest.ini_options] asyncio_mode = "auto"