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
2 changes: 1 addition & 1 deletion .github/workflows/check-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ jobs:

- name: Install Bittensor SDK dependencies
working-directory: ${{ github.workspace }}/bittensor
run: uv pip install --system '.[dev]'
run: uv pip install --system '.[dev]' torch

- name: Clone async-substrate-interface repo
run: git clone https://github.com/opentensor/async-substrate-interface.git
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.5.15 /2025-12-22
* Modifies the CachedFetcher to not keep pending exceptions by @thewhaleking in https://github.com/opentensor/async-substrate-interface/pull/253

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

## 1.5.14 /2025-12-04
* Update: Adds support for custom extrinsic `DecryptionFailed` by @ibraheem-abe in https://github.com/opentensor/async-substrate-interface/pull/247

Expand Down
3 changes: 2 additions & 1 deletion async_substrate_interface/utils/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,8 @@ async def __call__(self, *args: Any, **kwargs: Any) -> Any:
future.set_result(result)
return result
except Exception as e:
future.set_exception(e)
self._inflight.pop(key, None)
future.cancel()
raise
finally:
self._inflight.pop(key, None)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "async-substrate-interface"
version = "1.5.14"
version = "1.5.15"
description = "Asyncio library for interacting with substrate. Mostly API-compatible with py-substrate-interface"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down
Loading