Skip to content

Commit d6ad9f8

Browse files
Merge pull request #2750 from opentensor/release/9.1.0
Release/9.1.0
2 parents 7b14db2 + 251cf97 commit d6ad9f8

Some content is hidden

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

57 files changed

+2418
-951
lines changed

.circleci/config.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
command: |
3939
python -m venv .venv
4040
. .venv/bin/activate
41-
python -m pip install --upgrade pip
42-
pip install ruff -c requirements/dev.txt
41+
python -m pip install --upgrade uv
42+
uv pip install ruff -c requirements/dev.txt
4343
4444
- save_cache:
4545
name: Save cached ruff venv
@@ -98,20 +98,20 @@ jobs:
9898
command: |
9999
python -m venv .venv
100100
. .venv/bin/activate
101-
python -m pip install --upgrade pip
102-
python -m pip install '.[dev]'
101+
python -m pip install --upgrade uv
102+
uv sync --all-extras --dev
103103
104104
- save_cache:
105105
name: Save cached venv
106106
paths:
107-
- "env/"
107+
- "venv/"
108108
key: v2-pypi-py<< parameters.python-version >>-{{ checksum "requirements/prod.txt" }}+{{ checksum "requirements/dev.txt" }}
109109

110110
- run:
111111
name: Install Bittensor
112112
command: |
113113
. .venv/bin/activate
114-
pip install -e '.[dev]'
114+
uv sync --all-extras --dev
115115
116116
- run:
117117
name: Instantiate Mock Wallet
@@ -189,9 +189,9 @@ jobs:
189189
command: |
190190
python -m venv .venv
191191
. .venv/bin/activate
192-
python -m pip install --upgrade pip
193-
python -m pip install '.[dev]'
194-
pip install flake8
192+
python -m pip install --upgrade uv
193+
uv sync --all-extras --dev
194+
uv pip install flake8
195195
196196
- save_cache:
197197
name: Save cached venv
@@ -203,7 +203,7 @@ jobs:
203203
name: Install Bittensor
204204
command: |
205205
. .venv/bin/activate
206-
pip install -e '.[dev]'
206+
uv sync --all-extras --dev
207207
208208
- run:
209209
name: Lint with flake8
@@ -232,7 +232,7 @@ jobs:
232232
- run:
233233
name: Combine Coverage
234234
command: |
235-
pip3 install --upgrade coveralls
235+
uv pip install --upgrade coveralls
236236
coveralls --finish --rcfile .coveragerc || echo "Failed to upload coverage"
237237
238238
check-version-updated:

.github/workflows/e2e-subtensor-tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ concurrency:
66

77
on:
88
push:
9-
branches: [main, development, staging]
9+
branches: [master, development, staging]
1010

1111
pull_request:
12-
branches: [main, development, staging]
12+
branches: [master, development, staging]
1313
types: [ opened, synchronize, reopened, ready_for_review ]
1414

1515
workflow_dispatch:

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

3+
## 9.1.0 /2025-03-12
4+
5+
## What's Changed
6+
* Refactor duplicated unittests code by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2724
7+
* Use uv for circleci by @thewhaleking in https://github.com/opentensor/bittensor/pull/2729
8+
* Fix E2E test_metagraph_info by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2728
9+
* Tests: deduplicate fake_wallet and correctly create Mock by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2730
10+
* E2E Test: wait cooldown period to check set_children effect by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2733
11+
* Tests: wait for Miner/Validator to fully start by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2737
12+
* All metagraph subtensor methods now use block by @thewhaleking in https://github.com/opentensor/bittensor/pull/2738
13+
* Tests: increse test_incentive timeout + fix sudo_set_weights_set_rate_limit by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2739
14+
* Feat/safe staking by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2736
15+
* 9.0.5: Bumps version and changelog by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2741
16+
* Tests: enable E2E test_batch_operations by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2744
17+
* Fix: burned_register supports root subnet (netuid=0 param) by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2732
18+
* Feat: set_delegate_take by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2731
19+
* Renames rate_threshold -> rate_tolerance by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2745
20+
21+
**Full Changelog**: https://github.com/opentensor/bittensor/compare/v9.0.4...v9.1.0
22+
323
## 9.0.4 /2025-03-06
424

525
## What's Changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.0.4
1+
9.1.0

0 commit comments

Comments
 (0)