Skip to content

Commit 66fe45d

Browse files
committed
Dependencies
1 parent 68a8e16 commit 66fe45d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

async_substrate_interface/utils/cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
import functools
55
import logging
66
import os
7+
import pickle
78
import sqlite3
89
from pathlib import Path
910
from typing import Callable, Any, Awaitable, Hashable, Optional
1011

1112
import aiosqlite
12-
import dill as pickle
1313

1414

1515
USE_CACHE = True if os.getenv("NO_CACHE") != "1" else False

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ keywords = ["substrate", "development", "bittensor"]
88

99
dependencies = [
1010
"wheel",
11+
"aiosqlite>=0.21.0,<1.0.0"
1112
"bt-decode==v0.8.0",
1213
"scalecodec~=1.2.11",
1314
"websockets>=14.1",
1415
"xxhash",
15-
"aiosqlite>=0.21.0,<1.0.0"
1616
]
1717

1818
requires-python = ">=3.9,<3.14"

0 commit comments

Comments
 (0)