File tree Expand file tree Collapse file tree 5 files changed +25
-6
lines changed
Expand file tree Collapse file tree 5 files changed +25
-6
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,14 @@ jobs:
2323 - name : Install dependencies
2424 run : |
2525 python -m pip install --upgrade pip
26- pip install build wheel twine
26+ pip install setuptools wheel twine build toml
2727
2828 - name : Build package
29- run : python setup.py sdist bdist_wheel
29+ run : python -m build -- sdist --wheel --outdir dist/
3030
3131 - name : Check if package version already exists
3232 run : |
33- PACKAGE_NAME=$(python setup.py -- name)
33+ PACKAGE_NAME=$(python -c "import toml; print(toml.load('pyproject.toml')['project'][' name'])")
3434 PACKAGE_VERSION=${{ github.event.inputs.version }}
3535 if twine check dist/*; then
3636 if pip install $PACKAGE_NAME==$PACKAGE_VERSION; then
Original file line number Diff line number Diff line change 11# Changelog
22
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+
322## 9.0.3 /2025-02-26
423
524## 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 "
22
33import os
44import re
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " bittensor"
7- version = " 9.0.3 "
7+ version = " 9.0.4 "
88description = " Bittensor"
99readme = " README.md"
1010authors = [
You can’t perform that action at this time.
0 commit comments