Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/check-btcli-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,9 @@ jobs:
source ${{ github.workspace }}/venv/bin/activate
git checkout staging
git fetch origin staging
python3 -m pip install --upgrade pip
python3 -m pip install '.[dev]'
python3 -m pip install pytest
python3 -m pip install --upgrade pip uv
uv pip install '.[dev]'
uv pip install pytest
- name: Clone async-substrate-interface repo
run: git clone https://github.com/opentensor/async-substrate-interface.git
Expand All @@ -185,7 +185,7 @@ jobs:
run: |
source ${{ github.workspace }}/venv/bin/activate
python3 -m pip uninstall async-substrate-interface -y
python3 -m pip install .
uv pip install .
- name: Download Cached Docker Image
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -229,8 +229,8 @@ jobs:
source ${{ github.workspace }}/venv/bin/activate
git checkout staging
git fetch origin staging
python3 -m pip install --upgrade pip
python3 -m pip install '.[dev]'
python3 -m pip install --upgrade pip uv
uv pip install '.[dev]'
- name: Clone async-substrate-interface repo
run: git clone https://github.com/opentensor/async-substrate-interface.git
Expand All @@ -247,7 +247,7 @@ jobs:
run: |
source ${{ github.workspace }}/venv/bin/activate
pip uninstall async-substrate-interface -y
pip install .
uv pip install .
- name: Run SDK unit tests
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/check-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ jobs:
fi
git checkout FETCH_HEAD
echo "✅ Using Bittensor branch: $BITTENSOR_BRANCH"
python3 -m pip install --upgrade pip
python3 -m pip install '.[dev]'
python3 -m pip install --upgrade pip uv
uv pip install '.[dev]'

- name: Clone Bittensor async-substrate-interface repo
run: git clone https://github.com/opentensor/async-substrate-interface.git
Expand All @@ -212,7 +212,7 @@ jobs:
run: |
source ${{ github.workspace }}/venv/bin/activate
python3 -m pip uninstall async-substrate-interface -y
python3 -m pip install .
uv pip install .

- name: Download Cached Docker Image
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -260,8 +260,8 @@ jobs:
fi
git checkout FETCH_HEAD
echo "✅ Using Bittensor branch: $BITTENSOR_BRANCH"
python3 -m pip install --upgrade pip
python3 -m pip install '.[dev]'
python3 -m pip install --upgrade pip uv
uv pip install '.[dev]'

- name: Clone async-substrate-interface repo
run: git clone https://github.com/opentensor/async-substrate-interface.git
Expand All @@ -278,7 +278,7 @@ jobs:
run: |
source ${{ github.workspace }}/venv/bin/activate
pip uninstall async-substrate-interface -y
pip install .
uv pip install .

- name: Run SDK integration tests
run: |
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Changelog
## 1.5.8 /2025-10-21
* Fix parameter name conflict in retry substrate _retry() methods by @Arthurdw in https://github.com/opentensor/async-substrate-interface/pull/218
* Use uv for test dependencies by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/219
* Reconnection/Resubmission Logic Improved by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/217

## New Contributors
* @Arthurdw made their first contribution in https://github.com/opentensor/async-substrate-interface/pull/218

**Full Changelog**: https://github.com/opentensor/async-substrate-interface/compare/v1.5.7...v1.5.8

## 1.5.7 /2025-10-15
* Updates the type hint on ws_shutdown_timer in RetryAsyncSubstrate by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/203
* correct type hint by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/204
Expand Down
Loading
Loading