mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
Removed hardcoded torch version and used the one from requirements.txt
This commit is contained in:
parent
1d2ade748c
commit
2af9876b76
1 changed files with 7 additions and 2 deletions
9
setup.py
9
setup.py
|
@ -8,6 +8,13 @@ from setuptools import find_packages, setup
|
||||||
with open("requirements.txt") as f:
|
with open("requirements.txt") as f:
|
||||||
requirements = f.read().splitlines()
|
requirements = f.read().splitlines()
|
||||||
|
|
||||||
|
# Find the torch requirement and remove it from the list
|
||||||
|
torch = next((req for req in requirements if req.startswith("torch==")), None)
|
||||||
|
if torch:
|
||||||
|
requirements.remove(torch)
|
||||||
|
else:
|
||||||
|
torch = "torch==2.2.2" # Fallback if not found in requirements.txt
|
||||||
|
|
||||||
from aider import __version__
|
from aider import __version__
|
||||||
from aider.help_pats import exclude_website_pats
|
from aider.help_pats import exclude_website_pats
|
||||||
|
|
||||||
|
@ -19,8 +26,6 @@ with open("README.md", "r", encoding="utf-8") as f:
|
||||||
# Debug: Print discovered packages
|
# Debug: Print discovered packages
|
||||||
packages = find_packages(exclude=["benchmark"]) + ["aider.website"]
|
packages = find_packages(exclude=["benchmark"]) + ["aider.website"]
|
||||||
print("Discovered packages:", packages)
|
print("Discovered packages:", packages)
|
||||||
|
|
||||||
torch = "torch==2.2.2"
|
|
||||||
pytorch_url = None
|
pytorch_url = None
|
||||||
|
|
||||||
with TemporaryDirectory(prefix="pytorch_download_") as temp_dir:
|
with TemporaryDirectory(prefix="pytorch_download_") as temp_dir:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue