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
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down Expand Up @@ -209,4 +208,4 @@ replicate.yaml
**/run.sh

# Notebooks
*.ipynb
*.ipynb
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 9.5.1 /2025-06-02
## What's Changed
* Declare templates in MANIFEST and include package data by @thewhaleking in https://github.com/opentensor/btcli/pull/477


**Full Changelog**: https://github.com/opentensor/btcli/compare/v9.5.0...v9.5.1

## 9.5.0 /2025-06-02

## What's Changed
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include bittensor_cli/src/bittensor/templates *
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "bittensor-cli"
version = "9.5.0"
version = "9.5.1"
description = "Bittensor CLI"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -65,4 +65,5 @@ classifiers = [
]

[tool.setuptools]
package-dir = {"bittensor_cli" = "bittensor_cli"}
package-dir = {"bittensor_cli" = "bittensor_cli"}
include-package-data = true
Loading