Skip to content

Commit

Permalink
Merge branch 'staging' into fix
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-opentensor authored Feb 6, 2025
2 parents 3562530 + 229a11e commit 42032bc
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
fi
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
Expand All @@ -60,7 +60,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion bittensor/core/extrinsics/async_commit_reveal.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ async def commit_reveal_v3_extrinsic(
return False, message

logging.success(
f"[green]Finalized![/green] Weights commited with reveal round [blue]{reveal_round}[/blue]."
f"[green]Finalized![/green] Weights committed with reveal round [blue]{reveal_round}[/blue]."
)
return True, f"reveal_round:{reveal_round}"

Expand Down
2 changes: 1 addition & 1 deletion bittensor/core/extrinsics/commit_reveal.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def commit_reveal_v3_extrinsic(

if success is True:
logging.success(
f"[green]Finalized![/green] Weights commited with reveal round [blue]{reveal_round}[/blue]."
f"[green]Finalized![/green] Weights committed with reveal round [blue]{reveal_round}[/blue]."
)
return True, f"reveal_round:{reveal_round}"
else:
Expand Down
4 changes: 2 additions & 2 deletions bittensor/utils/networking.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def int_to_ip(int_val: int) -> str:
def ip_to_int(str_val: str) -> int:
"""Maps an ip-string to a unique integer.
arg:
str_val (:tyep:`str`, `required):
str_val (:type:`str`, `required):
The string representation of an ip. Of form *.*.*.* for ipv4 or *::*:*:*:* for ipv6
Returns:
Expand All @@ -51,7 +51,7 @@ def ip_to_int(str_val: str) -> int:
def ip_version(str_val: str) -> int:
"""Returns the ip version (IPV4 or IPV6).
arg:
str_val (:tyep:`str`, `required):
str_val (:type:`str`, `required):
The string representation of an ip. Of form *.*.*.* for ipv4 or *::*:*:*:* for ipv6
Returns:
Expand Down
2 changes: 1 addition & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ flake8==7.0.0
mypy==1.8.0
types-retry==0.9.9.4
freezegun==1.5.0
torch>=1.13.1
torch==2.5.1
httpx==0.27.0
ruff==0.4.7
aioresponses==0.7.6
Expand Down
2 changes: 1 addition & 1 deletion requirements/torch.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
torch>=1.13.1
torch==2.5.1
6 changes: 3 additions & 3 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -266,16 +266,16 @@ echo ""
ohai "Welcome. Installation successful"
echo ""
echo "- 1. Create a wallet "
echo " $ btcli new_coldkey (for holding funds)"
echo " $ btcli new_hotkey (for running miners)"
echo " $ btcli w new_coldkey # (for holding funds)"
echo " $ btcli w new_hotkey # (for running miners)"
echo ""
echo "- 2. Run a miner on the prompting network. "
echo " $ python3 ~/.bittensor/bittensor/neurons/text/prompting/miners/gpt4all/neuron.py"
echo ""
ohai "Extras:"
echo ""
echo "- Check your tao balance: "
echo " $ btcli wallet overview"
echo " $ btcli w overview"
echo ""
echo "- Stake to your miners:"
echo " $ btcli stake add"
Expand Down

0 comments on commit 42032bc

Please sign in to comment.