Skip to content

Commit 2e7988d

Browse files
authored
Merge pull request #3069 from opentensor/release/9.11.0
Release/9.11.0
2 parents 955efa9 + 6d7f5a3 commit 2e7988d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+3621
-884
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## 9.11.0 /2025-09-25
4+
5+
## What's Changed
6+
* Fix broken links in CONTRIBUTING.md by @Gimzou in https://github.com/opentensor/bittensor/pull/3041
7+
* Fix after `Rate limit hyperparams setting` by @basfroman in https://github.com/opentensor/bittensor/pull/3052
8+
* Fix SubtensorApi unit tests by @basfroman in https://github.com/opentensor/bittensor/pull/3054
9+
* add commitments data into metagraph by @basfroman in https://github.com/opentensor/bittensor/pull/3055
10+
* add getting OwnerHyperparamRateLimit in e2e test by @basfroman in https://github.com/opentensor/bittensor/pull/3059
11+
* update make file by @basfroman in https://github.com/opentensor/bittensor/pull/3058
12+
* `Subnet Mechanism` logic by @basfroman in https://github.com/opentensor/bittensor/pull/3056
13+
* let do less calculations on `get_subnet_price` by @basfroman in https://github.com/opentensor/bittensor/pull/3063
14+
* deps: update munch to prevent deprecation warning by @Arthurdw in https://github.com/opentensor/bittensor/pull/3061
15+
16+
## New Contributors
17+
* @Gimzou made their first contribution in https://github.com/opentensor/bittensor/pull/3041
18+
19+
**Full Changelog**: https://github.com/opentensor/bittensor/compare/v9.10.1...v9.11.0
20+
321
## 9.10.1 /2025-09-05
422

523
## What's Changed

Makefile

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SHELL := /bin/bash
2-
.PHONY: init-venv clean-venv clean install install-dev reinstall reinstall-dev
2+
.PHONY: init-venv clean-venv clean install install-dev reinstall reinstall-dev ruff check
33

44
init-venv:
55
python3 -m venv venv && source ./venv/bin/activate
@@ -11,7 +11,8 @@ clean-venv:
1111
rm make_venv_to_uninstall.txt
1212

1313
clean:
14-
rm -rf dist/ build/ bittensor.egg-info/ .pytest_cache/ lib/
14+
@rm -rf dist/ build/ bittensor.egg-info/ .pytest_cache/ lib/ .mypy_cache .ruff_cache \
15+
$(shell find . -type d \( -name ".hypothesis" -o -name "__pycache__" \))
1516

1617
install: init-venv
1718
source ./venv/bin/activate && \
@@ -24,3 +25,14 @@ install-dev: init-venv
2425
reinstall: clean clean-venv install
2526

2627
reinstall-dev: clean clean-venv install-dev
28+
29+
ruff:
30+
@python -m ruff format bittensor
31+
32+
check: ruff
33+
@mypy --ignore-missing-imports bittensor/ --python-version=3.9
34+
@mypy --ignore-missing-imports bittensor/ --python-version=3.10
35+
@mypy --ignore-missing-imports bittensor/ --python-version=3.11
36+
@mypy --ignore-missing-imports bittensor/ --python-version=3.12
37+
@mypy --ignore-missing-imports bittensor/ --python-version=3.13
38+
@flake8 bittensor/ --count

0 commit comments

Comments
 (0)