File tree Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 45
45
fi
46
46
47
47
- name : Upload artifact
48
- uses : actions/upload-artifact@v3
48
+ uses : actions/upload-artifact@v4
49
49
with :
50
50
name : dist
51
51
path : dist/
60
60
61
61
steps :
62
62
- name : Download artifact
63
- uses : actions/download-artifact@v3
63
+ uses : actions/download-artifact@v4
64
64
with :
65
65
name : dist
66
66
path : dist/
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ async def commit_reveal_v3_extrinsic(
143
143
return False , message
144
144
145
145
logging .success (
146
- f"[green]Finalized![/green] Weights commited with reveal round [blue]{ reveal_round } [/blue]."
146
+ f"[green]Finalized![/green] Weights committed with reveal round [blue]{ reveal_round } [/blue]."
147
147
)
148
148
return True , f"reveal_round:{ reveal_round } "
149
149
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ def commit_reveal_v3_extrinsic(
145
145
146
146
if success is True :
147
147
logging .success (
148
- f"[green]Finalized![/green] Weights commited with reveal round [blue]{ reveal_round } [/blue]."
148
+ f"[green]Finalized![/green] Weights committed with reveal round [blue]{ reveal_round } [/blue]."
149
149
)
150
150
return True , f"reveal_round:{ reveal_round } "
151
151
else :
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def int_to_ip(int_val: int) -> str:
34
34
def ip_to_int (str_val : str ) -> int :
35
35
"""Maps an ip-string to a unique integer.
36
36
arg:
37
- str_val (:tyep :`str`, `required):
37
+ str_val (:type :`str`, `required):
38
38
The string representation of an ip. Of form *.*.*.* for ipv4 or *::*:*:*:* for ipv6
39
39
40
40
Returns:
@@ -51,7 +51,7 @@ def ip_to_int(str_val: str) -> int:
51
51
def ip_version (str_val : str ) -> int :
52
52
"""Returns the ip version (IPV4 or IPV6).
53
53
arg:
54
- str_val (:tyep :`str`, `required):
54
+ str_val (:type :`str`, `required):
55
55
The string representation of an ip. Of form *.*.*.* for ipv4 or *::*:*:*:* for ipv6
56
56
57
57
Returns:
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ flake8==7.0.0
12
12
mypy==1.8.0
13
13
types-retry==0.9.9.4
14
14
freezegun==1.5.0
15
- torch>=1.13 .1
15
+ torch==2.5 .1
16
16
httpx==0.27.0
17
17
ruff==0.4.7
18
18
aioresponses==0.7.6
Original file line number Diff line number Diff line change 1
- torch>=1.13 .1
1
+ torch==2.5 .1
Original file line number Diff line number Diff line change @@ -266,16 +266,16 @@ echo ""
266
266
ohai " Welcome. Installation successful"
267
267
echo " "
268
268
echo " - 1. Create a wallet "
269
- echo " $ btcli new_coldkey (for holding funds)"
270
- echo " $ btcli new_hotkey (for running miners)"
269
+ echo " $ btcli w new_coldkey # (for holding funds)"
270
+ echo " $ btcli w new_hotkey # (for running miners)"
271
271
echo " "
272
272
echo " - 2. Run a miner on the prompting network. "
273
273
echo " $ python3 ~/.bittensor/bittensor/neurons/text/prompting/miners/gpt4all/neuron.py"
274
274
echo " "
275
275
ohai " Extras:"
276
276
echo " "
277
277
echo " - Check your tao balance: "
278
- echo " $ btcli wallet overview"
278
+ echo " $ btcli w overview"
279
279
echo " "
280
280
echo " - Stake to your miners:"
281
281
echo " $ btcli stake add"
You can’t perform that action at this time.
0 commit comments