Skip to content

Commit 54cf0fb

Browse files
committed
fix: rename PyPI package to autonet-computer (name conflict)
1 parent 4a0ac18 commit 54cf0fb

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
8686
**pip:**
8787
```bash
88-
pip install autonet
88+
pip install autonet-computer
8989
```
9090
9191
**Linux/macOS:**
@@ -100,9 +100,9 @@ jobs:
100100
101101
**Optional extras:**
102102
```bash
103-
pip install autonet[voice] # Voice / TTS
104-
pip install autonet[node] # Full training node (PyTorch)
105-
pip install autonet[p2p] # P2P networking
103+
pip install autonet-computer[voice] # Voice / TTS
104+
pip install autonet-computer[node] # Full training node (PyTorch)
105+
pip install autonet-computer[p2p] # P2P networking
106106
```
107107
108108
## Package Integrity Hash

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=68.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "autonet"
6+
name = "autonet-computer"
77
version = "0.1.0"
88
description = "Decentralized AI alignment network with agent orchestration framework"
99
requires-python = ">=3.11"

scripts/install.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ if ($WheelPath -and (Test-Path $WheelPath)) {
6464
Info "Installing from local file: $WheelPath"
6565
& $PipExe install --upgrade $WheelPath
6666
} else {
67-
Info "Installing autonet from PyPI"
68-
& $PipExe install --upgrade autonet
67+
Info "Installing autonet-computer from PyPI"
68+
& $PipExe install --upgrade autonet-computer
6969
}
7070

7171
# --- Add to PATH ---
@@ -81,4 +81,4 @@ if ($UserPath -notlike "*$VenvBin*") {
8181

8282
Info "Installation complete!"
8383
Info "Run 'atn' to start the agent framework."
84-
Info "Optional extras: pip install autonet[voice] autonet[node] autonet[p2p]"
84+
Info "Optional extras: pip install autonet-computer[voice] autonet-computer[node] autonet-computer[p2p]"

scripts/install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ if [ "${1:-}" != "" ] && [ -f "$1" ]; then
4646
info "Installing from local file: $1"
4747
"$VENV_DIR/bin/pip" install --upgrade "$1"
4848
else
49-
info "Installing autonet from PyPI"
50-
"$VENV_DIR/bin/pip" install --upgrade autonet
49+
info "Installing autonet-computer from PyPI"
50+
"$VENV_DIR/bin/pip" install --upgrade autonet-computer
5151
fi
5252

5353
# --- Symlink ---
@@ -77,4 +77,4 @@ fi
7777

7878
info "Installation complete!"
7979
info "Run 'atn' to start the agent framework."
80-
info "Optional extras: pip install autonet[voice] autonet[node] autonet[p2p]"
80+
info "Optional extras: pip install autonet-computer[voice] autonet-computer[node] autonet-computer[p2p]"

0 commit comments

Comments
 (0)