Skip to content

Commit 2aa6d30

Browse files
author
Tim Heinsohn
committed
Revert "aider: add version specification support to aider update script"
This reverts commit ef80a96.
1 parent a560862 commit 2aa6d30

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

aider/install

+2-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44
# <https://github.com/Aider-AI/aider/issues/1984>
55

66
# Install Aider with uv
7-
# Use VERSION=0.72 to install specific version:
8-
# VERSION=0.72 ./aider/install
9-
echo "Installing aider-chat${VERSION:+ version $VERSION}..."
10-
uv tool install --python python3.12 --force aider-chat${VERSION:+==$VERSION} &&
7+
echo "Installing aider-chat..."
8+
uv tool install --python python3.12 --force aider-chat &&
119

1210
# Create virtual environment
1311
echo "Creating virtual environment..." &&

aider/update

+2-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44
#!/bin/bash
55

66
# Update Aider using uv
7-
# To rollback/downgrade, specify VERSION:
8-
# VERSION=0.72 ./aider/update
9-
echo "Updating aider-chat${VERSION:+ to version $VERSION}..."
10-
uv tool install --python python3.12 ${VERSION:+--force} "aider-chat${VERSION:+==$VERSION}" ${VERSION:---upgrade aider-chat}
7+
echo "Updating aider-chat..."
8+
uv tool install --python python3.12 --upgrade aider-chat
119

1210
# Update dependencies in virtual environment
1311
if [ -d ~/.aider-venv ]; then

0 commit comments

Comments
 (0)