Problem
README advertises Python 3.10+ as a requirement, but pyproject.toml pins requires-python = ">=3.12", so uv sync fails on Python 3.10 / 3.11.
Steps
- Install Python 3.10 or 3.11 (matching README claim).
git clone https://github.com/kevinrgu/autoagent && cd autoagent
uv sync
Expected
Dependencies install per README's stated Python 3.10+ requirement.
Actual
uv sync refuses because pyproject.toml line 5 sets requires-python = ">=3.12". .python-version also pins 3.13, adding a third value.
Cite
README.md:41: **Requirements:** Docker, Python 3.10+, [uv]...
pyproject.toml:5: requires-python = ">=3.12"
.python-version: 3.13
Fix (pick one)
Either bump README to Python 3.12+ (or 3.13+ to match .python-version), or lower requires-python in pyproject.toml to >=3.10 if the code actually supports it.
Environment
Repo main @ commit as of 2026-07-04. uv per astral.sh/uv.
Thanks for maintaining kevinrgu/autoagent!
Problem
README advertises Python 3.10+ as a requirement, but
pyproject.tomlpinsrequires-python = ">=3.12", souv syncfails on Python 3.10 / 3.11.Steps
git clone https://github.com/kevinrgu/autoagent && cd autoagentuv syncExpected
Dependencies install per README's stated Python 3.10+ requirement.
Actual
uv syncrefuses becausepyproject.tomlline 5 setsrequires-python = ">=3.12"..python-versionalso pins3.13, adding a third value.Cite
README.md:41:**Requirements:** Docker, Python 3.10+, [uv]...pyproject.toml:5:requires-python = ">=3.12".python-version:3.13Fix (pick one)
Either bump README to
Python 3.12+(or 3.13+ to match.python-version), or lowerrequires-pythoninpyproject.tomlto>=3.10if the code actually supports it.Environment
Repo
main@ commit as of 2026-07-04.uvperastral.sh/uv.Thanks for maintaining kevinrgu/autoagent!