File tree 5 files changed +25
-6
lines changed
5 files changed +25
-6
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.0.4 /2025-03-06
4
+
5
+ ## What's Changed
6
+ * Release/9.0.3 by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2712
7
+ * improve ` wait_for_node_start ` until 20 mins by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2714
8
+ * More E2E tests by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2678
9
+ * fix(2715): use ChainIdentity for identities by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2718
10
+ * Metagraph use block correctly in ` _get_all_stakes_from_chain ` by @thewhaleking in https://github.com/opentensor/bittensor/pull/2719
11
+ * Integration tests for async-substrate-interface 1.0.4 compatibility by @thewhaleking in https://github.com/opentensor/bittensor/pull/2720
12
+ * Backmerge main staging 904 by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2721
13
+ * Skip E2E test_children by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2723
14
+ * More Subtensor unnitests by @zyzniewski-reef in https://github.com/opentensor/bittensor/pull/2713
15
+ * Change to pyproject.toml by @thewhaleking in https://github.com/opentensor/bittensor/pull/2504
16
+ * Updates test_incentive by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2722
17
+ * Use uv for gh actions by @thewhaleking in https://github.com/opentensor/bittensor/pull/2503
18
+ * Bumps async substrate interface by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2725
19
+
20
+ ** Full Changelog** : https://github.com/opentensor/bittensor/compare/v9.0.3...v9.0.4
21
+
3
22
## 9.0.3 /2025-02-26
4
23
5
24
## What's Changed
Original file line number Diff line number Diff line change 1
- 9.0.3
1
+ 9.0.4
Original file line number Diff line number Diff line change 1
- __version__ = "9.0.3 "
1
+ __version__ = "9.0.4 "
2
2
3
3
import os
4
4
import re
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " bittensor"
7
- version = " 9.0.3 "
7
+ version = " 9.0.4 "
8
8
description = " Bittensor"
9
9
readme = " README.md"
10
10
authors = [
You can’t perform that action at this time.
0 commit comments