File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 15
15
import rich
16
16
import typer
17
17
import numpy as np
18
- from async_substrate_interface .errors import SubstrateRequestException
18
+ from async_substrate_interface .errors import (
19
+ SubstrateRequestException ,
20
+ ConnectionClosed ,
21
+ InvalidHandshake ,
22
+ )
19
23
from bittensor_wallet import Wallet
20
24
from rich import box
21
25
from rich .prompt import Confirm , FloatPrompt , Prompt , IntPrompt
22
26
from rich .table import Column , Table
23
27
from rich .tree import Tree
24
28
from typing_extensions import Annotated
25
- from websockets import ConnectionClosed , InvalidHandshake
26
29
from yaml import safe_dump , safe_load
27
30
28
31
from bittensor_cli .src import (
Original file line number Diff line number Diff line change @@ -16,23 +16,22 @@ requires-python = ">=3.9,<3.14"
16
16
dependencies = [
17
17
" wheel" ,
18
18
" async-property==0.2.2" ,
19
- " async-substrate-interface>=1.0.8 " ,
19
+ " async-substrate-interface>=1.1.0 " ,
20
20
" aiohttp~=3.10.2" ,
21
21
" backoff~=2.2.1" ,
22
22
" GitPython>=3.0.0" ,
23
23
" fuzzywuzzy~=0.18.0" ,
24
24
" netaddr~=1.3.0" ,
25
- " numpy>=2.0.1" ,
25
+ " numpy>=2.0.1,<3.0.0 " ,
26
26
" Jinja2" ,
27
27
" pycryptodome>=3.0.0,<4.0.0" ,
28
28
" PyYAML~=6.0.1" ,
29
29
" pytest" ,
30
30
" python-Levenshtein" ,
31
- " rich~ =13.7" ,
31
+ " rich> =13.7,<15.0 " ,
32
32
" scalecodec==1.2.11" ,
33
- " typer~=0.12" ,
34
- " websockets>=14.1" ,
35
- " bittensor-wallet>=3.0.5" ,
33
+ " typer>=0.12,<0.16" ,
34
+ " bittensor-wallet>=3.0.7" ,
36
35
" plotille>=5.0.0" ,
37
36
" pywry>=0.6.2" ,
38
37
" plotly>=6.0.0" ,
You can’t perform that action at this time.
0 commit comments