Skip to content

Commit 13f83d3

Browse files
authored
Merge pull request #785 from opentensor/release/9.17.0
Release/9.17.0
2 parents 6209a52 + 555b4ec commit 13f83d3

Some content is hidden

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

44 files changed

+4543
-730
lines changed

.github/workflows/unit-tests.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Unit Tests
2+
3+
concurrency:
4+
group: unit-tests-${{ github.event.pull_request.number || github.ref }}
5+
cancel-in-progress: true
6+
7+
permissions:
8+
pull-requests: read
9+
contents: read
10+
11+
on:
12+
push:
13+
branches: [main, development, staging]
14+
15+
pull_request:
16+
branches: [main, development, staging]
17+
types: [opened, synchronize, reopened, ready_for_review]
18+
19+
workflow_dispatch:
20+
21+
jobs:
22+
unit-tests:
23+
name: Unit Tests / Python ${{ matrix.python-version }}
24+
runs-on: ubuntu-latest
25+
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
26+
timeout-minutes: 10
27+
strategy:
28+
fail-fast: false
29+
matrix:
30+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
31+
steps:
32+
- name: Check-out repository
33+
uses: actions/checkout@v4
34+
35+
- name: Install uv
36+
uses: astral-sh/setup-uv@v4
37+
with:
38+
python-version: ${{ matrix.python-version }}
39+
40+
- name: Install dependencies
41+
run: |
42+
uv sync --all-extras
43+
44+
- name: Run unit tests
45+
run: |
46+
uv run pytest tests/unit_tests -v --tb=short

CHANGELOG.md

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

3+
## 9.17.0 /2025-12-22
4+
5+
## What's Changed
6+
* feat: add cli for axon set and reset by @Mobile-Crest in https://github.com/opentensor/btcli/pull/726
7+
* json console and tests by @thewhaleking in https://github.com/opentensor/btcli/pull/744
8+
* Consolidates the `--coldkey-ss58` param into a predefined Option. by @thewhaleking in https://github.com/opentensor/btcli/pull/750
9+
* Testing: Disables non fast blocks for hyperparam by @ibraheem-abe in https://github.com/opentensor/btcli/pull/755
10+
* Feat: Improve Subnet Hyperparameters cmd #607 by @SmartDever02 in https://github.com/opentensor/btcli/pull/746
11+
* feat: show weights difference when setting root weights by @MkDev11 in https://github.com/opentensor/btcli/pull/747
12+
* Feat/Add `--no` flag to auto-decline confirmation prompts 194 by @MkDev11 in https://github.com/opentensor/btcli/pull/748
13+
* Improve subnets register command and error message by @Mobile-Crest in https://github.com/opentensor/btcli/pull/754
14+
* fix: resolve SQL syntax error in ProxyAnnouncements and improve event loop by @leonace924 in https://github.com/opentensor/btcli/pull/769
15+
* pr fixes by @thewhaleking in https://github.com/opentensor/btcli/pull/768
16+
* Account for 0x-prepended call hashes by @thewhaleking in https://github.com/opentensor/btcli/pull/772
17+
* Unit test fixes by @thewhaleking in https://github.com/opentensor/btcli/pull/775
18+
* fix: remove unused --hotkey option from wallet inspect command by @calm329 in https://github.com/opentensor/btcli/pull/770
19+
* Fix: update the err_console.print to print_error to make consistency in error printing with cross mark by @leonace924 in https://github.com/opentensor/btcli/pull/778
20+
* Feat: Safe staking in swap_stake by @ibraheem-abe in https://github.com/opentensor/btcli/pull/779
21+
* proxy execute improvements by @thewhaleking in https://github.com/opentensor/btcli/pull/774
22+
* Adds CONTRIBUTING guide by @thewhaleking in https://github.com/opentensor/btcli/pull/777
23+
24+
## New Contributors
25+
* @Mobile-Crest made their first contribution in https://github.com/opentensor/btcli/pull/726
26+
* @SmartDever02 made their first contribution in https://github.com/opentensor/btcli/pull/746
27+
* @MkDev11 made their first contribution in https://github.com/opentensor/btcli/pull/747
28+
* @leonace924 made their first contribution in https://github.com/opentensor/btcli/pull/769
29+
* @calm329 made their first contribution in https://github.com/opentensor/btcli/pull/770
30+
31+
**Full Changelog**: https://github.com/opentensor/btcli/compare/v9.16.0...v9.17.0
32+
333
## 9.16.0 /2025-12-09
434

535
## What's Changed

CONTRIBUTING.md

Lines changed: 332 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)