File tree Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,14 @@ jobs:
23
23
- name : Install dependencies
24
24
run : |
25
25
python -m pip install --upgrade pip
26
- pip install build wheel twine
26
+ pip install setuptools wheel twine build toml
27
27
28
28
- name : Build package
29
- run : python setup.py sdist bdist_wheel
29
+ run : python -m build -- sdist --wheel --outdir dist/
30
30
31
31
- name : Check if package version already exists
32
32
run : |
33
- PACKAGE_NAME=$(python setup.py -- name)
33
+ PACKAGE_NAME=$(python -c "import toml; print(toml.load('pyproject.toml')['project'][' name'])")
34
34
PACKAGE_VERSION=${{ github.event.inputs.version }}
35
35
if twine check dist/*; then
36
36
if pip install $PACKAGE_NAME==$PACKAGE_VERSION; then
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 9.1.1 /2025-03-06
4
+
5
+ ## What's Changed
6
+ * fix: int() argument must be a string, a bytes-like object or a real n… by @0xxfu in https://github.com/opentensor/btcli/pull/352
7
+ * Change to pyproject toml by @thewhaleking in https://github.com/opentensor/btcli/pull/357
8
+ * Feat: Dashboard improvements by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/350
9
+ * Improves stake transfer, adds interactive selection of delegates by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/358
10
+ * Removes hidden flags for unstaking all by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/359
11
+ * Removes ` typer.Exit ` exceptions in commands by @thewhaleking in https://github.com/opentensor/btcli/pull/353
12
+ * Add transaction fee check inter-subnet movement by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/361
13
+ * Backmerge main to staging 910 by @ibraheem-opentensor in https://github.com/opentensor/btcli/pull/362
14
+
15
+ ## New Contributors
16
+ * @0xxfu made their first contribution in https://github.com/opentensor/btcli/pull/352
17
+
18
+ ** Full Changelog** : https://github.com/opentensor/btcli/compare/v9.1.0...v9.1.1
19
+
3
20
## 9.1.0 /2025-03-01
4
21
5
22
## What's Changed
Original file line number Diff line number Diff line change @@ -15,5 +15,5 @@ def version_as_int(version):
15
15
__new_signature_version__ = 360
16
16
return __version_as_int__
17
17
18
- __version__ = "9.1.0 "
18
+ __version__ = "9.1.1 "
19
19
__version_as_int__ = version_as_int (__version__ )
You can’t perform that action at this time.
0 commit comments