Skip to content

Commit 42032bc

Browse files
authored
Merge branch 'staging' into fix
2 parents 3562530 + 229a11e commit 42032bc

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
fi
4646
4747
- name: Upload artifact
48-
uses: actions/upload-artifact@v3
48+
uses: actions/upload-artifact@v4
4949
with:
5050
name: dist
5151
path: dist/
@@ -60,7 +60,7 @@ jobs:
6060

6161
steps:
6262
- name: Download artifact
63-
uses: actions/download-artifact@v3
63+
uses: actions/download-artifact@v4
6464
with:
6565
name: dist
6666
path: dist/

bittensor/core/extrinsics/async_commit_reveal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ async def commit_reveal_v3_extrinsic(
143143
return False, message
144144

145145
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]."
147147
)
148148
return True, f"reveal_round:{reveal_round}"
149149

bittensor/core/extrinsics/commit_reveal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def commit_reveal_v3_extrinsic(
145145

146146
if success is True:
147147
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]."
149149
)
150150
return True, f"reveal_round:{reveal_round}"
151151
else:

bittensor/utils/networking.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def int_to_ip(int_val: int) -> str:
3434
def ip_to_int(str_val: str) -> int:
3535
"""Maps an ip-string to a unique integer.
3636
arg:
37-
str_val (:tyep:`str`, `required):
37+
str_val (:type:`str`, `required):
3838
The string representation of an ip. Of form *.*.*.* for ipv4 or *::*:*:*:* for ipv6
3939
4040
Returns:
@@ -51,7 +51,7 @@ def ip_to_int(str_val: str) -> int:
5151
def ip_version(str_val: str) -> int:
5252
"""Returns the ip version (IPV4 or IPV6).
5353
arg:
54-
str_val (:tyep:`str`, `required):
54+
str_val (:type:`str`, `required):
5555
The string representation of an ip. Of form *.*.*.* for ipv4 or *::*:*:*:* for ipv6
5656
5757
Returns:

requirements/dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ flake8==7.0.0
1212
mypy==1.8.0
1313
types-retry==0.9.9.4
1414
freezegun==1.5.0
15-
torch>=1.13.1
15+
torch==2.5.1
1616
httpx==0.27.0
1717
ruff==0.4.7
1818
aioresponses==0.7.6

requirements/torch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
torch>=1.13.1
1+
torch==2.5.1

scripts/install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -266,16 +266,16 @@ echo ""
266266
ohai "Welcome. Installation successful"
267267
echo ""
268268
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)"
271271
echo ""
272272
echo "- 2. Run a miner on the prompting network. "
273273
echo " $ python3 ~/.bittensor/bittensor/neurons/text/prompting/miners/gpt4all/neuron.py"
274274
echo ""
275275
ohai "Extras:"
276276
echo ""
277277
echo "- Check your tao balance: "
278-
echo " $ btcli wallet overview"
278+
echo " $ btcli w overview"
279279
echo ""
280280
echo "- Stake to your miners:"
281281
echo " $ btcli stake add"

0 commit comments

Comments
 (0)