Skip to content

Commit 6ff5cd3

Browse files
authored
Merge pull request #230 from opentensor/release/1.5.9
Release/1.5.9
2 parents ad17b09 + 58ee561 commit 6ff5cd3

File tree

12 files changed

+481
-433
lines changed

12 files changed

+481
-433
lines changed

.github/workflows/check-sdk-tests.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -263,15 +263,12 @@ jobs:
263263
python3 -m pip install --upgrade pip uv
264264
uv pip install '.[dev]'
265265
266-
- name: Clone async-substrate-interface repo
267-
run: git clone https://github.com/opentensor/async-substrate-interface.git
268-
269266
- name: Checkout PR branch in async-substrate-interface repo
270-
working-directory: ${{ github.workspace }}/async-substrate-interface
271-
run: |
272-
git fetch origin ${{ github.event.pull_request.head.ref }}
273-
git checkout ${{ github.event.pull_request.head.ref }}
274-
echo "Current branch: $(git rev-parse --abbrev-ref HEAD)"
267+
uses: actions/checkout@v4
268+
with:
269+
repository: ${{ github.event.pull_request.head.repo.full_name }}
270+
ref: ${{ github.event.pull_request.head.ref }}
271+
path: async-substrate-interface
275272

276273
- name: Install /async-substrate-interface package
277274
working-directory: ${{ github.workspace }}/async-substrate-interface

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
os:
125125
- ubuntu-latest
126126
test-file: ${{ fromJson(needs.find-tests.outputs.test-files) }}
127-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
127+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
128128
steps:
129129
- name: Check-out repository
130130
uses: actions/checkout@v4

.github/workflows/unit-and-integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
max-parallel: 5
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
18+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1919

2020
steps:
2121
- name: Checkout repository

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
# Changelog
2+
## 1.5.9 /2025-10-29
3+
* Adds metadata call functions retrieval by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/223
4+
* move metadata methods to SubstrateMixin by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/224
5+
* Update get_payment_info to include addl params by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/226
6+
* Python 3.14 by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/228
7+
* Support python 3.14 by @Moisan in https://github.com/opentensor/async-substrate-interface/pull/210
8+
9+
## New Contributors
10+
* @Moisan made their first contribution in https://github.com/opentensor/async-substrate-interface/pull/210
11+
12+
**Full Changelog**: https://github.com/opentensor/async-substrate-interface/compare/v1.5.8...v1.5.9
13+
214
## 1.5.8 /2025-10-21
315
* Fix parameter name conflict in retry substrate _retry() methods by @Arthurdw in https://github.com/opentensor/async-substrate-interface/pull/218
416
* Use uv for test dependencies by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/219

0 commit comments

Comments
 (0)