Skip to content

Commit b85677e

Browse files
authored
Merge pull request #124 from opentensor/fix/roman/small-fixes-and-improvements
Fixes, improvement, refactoring
2 parents d58e73e + 8ce2626 commit b85677e

File tree

15 files changed

+452
-329
lines changed

15 files changed

+452
-329
lines changed

Diff for: .github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: PyO3/maturin-action@v1.44.0
4040
with:
4141
target: ${{ matrix.platform.target }}
42-
args: --release --out dist
42+
args: --release --out dist --interpreter python3.9 python3.10 python3.11 python3.12 python3.13
4343
sccache: 'true'
4444
manylinux: auto
4545
before-script-linux: (apt-get update && apt-get install -y apt-utils && apt-get install -y pkg-config libssl-dev) || (yum install openssl openssl-devel -y)
@@ -68,7 +68,7 @@ jobs:
6868
uses: PyO3/maturin-action@v1.44.0
6969
with:
7070
target: ${{ matrix.platform.target }}
71-
args: --release --out dist --find-interpreter
71+
args: --release --out dist --interpreter python3.9 python3.10 python3.11 python3.12 python3.13
7272
sccache: 'true'
7373
- name: Upload wheels
7474
uses: actions/upload-artifact@v4

Diff for: CHANGELOG.MD

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## 3.0.6 /2025-04-02
4+
5+
## What's Changed
6+
* Improve release workflow by @roman-opentensor in #122
7+
8+
**Full Changelog**: https://github.com/opentensor/btwallet/compare/v3.0.5...v3.0.6
9+
10+
## 3.0.6 /2025-04-02
11+
12+
## What's Changed
13+
* BT Wallet v.3 (python improvement) by @roman-opentensor in #105
14+
* Test workflow by @igorsyl in #104
15+
* Add skip-check-rust label check in .github/workflows/check-rust.yml workflow by @roman-opentensor in #110
16+
* Fix wallet.create_coldkey_from_uri broken by @roman-opentensor in #109
17+
* Add workflows for run SDK and BTCLI tests if labels are applied by @roman-opentensor in #106
18+
* Add back srt and repr for Wallet and Keypair by @roman-opentensor in #111
19+
* Add trigger for check-rust workflow by @roman-opentensor in #113
20+
* Update readme by @roman-opentensor in #112
21+
* Update docker image name by @roman-opentensor in #114
22+
* fix returns for rust and pyi by @roman-opentensor in #119
23+
24+
**Full Changelog**: https://github.com/opentensor/btwallet/compare/v3.0.4...v3.0.5
25+
326
## 3.0.4 /2025-02-19
427

528
## What's Changed

Diff for: Cargo.lock

+1-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bittensor_wallet"
3-
version = "3.0.5"
3+
version = "3.0.6"
44
edition = "2021"
55

66
[lib]
@@ -12,7 +12,6 @@ crate-type = ["cdylib", "rlib"]
1212
sp-core = "34.0.0"
1313
pyo3 = { version = "0.22.4", features = ["gil-refs"] }
1414
bip39 = { version = "2.0.0", features = ["rand"] }
15-
rand = "0.8.5"
1615
hex = "0.4.3"
1716
colored = "2.1.0"
1817
serde_json = "1.0.128"
@@ -26,7 +25,6 @@ dirs = "5.0.1"
2625
serde = { version = "1.0.210", features = ["derive"] }
2726
base64 = "0.22.1"
2827
scrypt = "0.11.0"
29-
pkcs8 = "0.10.2"
3028
schnorrkel = "0.11.4"
3129
shellexpand = "3.1.0"
3230
rpassword = "7.3.1"

Diff for: bittensor_wallet/__init__.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import importlib.metadata
2+
13
from bittensor_wallet.bittensor_wallet import (
24
Config,
35
Keyfile,
@@ -25,4 +27,5 @@
2527
utils = utils
2628
wallet = wallet
2729

28-
__version__ = "3.0.2"
30+
# bump version in `pyproject.toml` only
31+
__version__ = importlib.metadata.version("bittensor-wallet")

0 commit comments

Comments
 (0)