diff --git a/install.sh b/install.sh index 01aa932..8606e31 100755 --- a/install.sh +++ b/install.sh @@ -79,12 +79,6 @@ python3 -m venv $APP/machine-learning/venv . $APP/machine-learning/venv/bin/activate pip3 install poetry cd machine-learning - if python -c 'import sys; exit(0) if sys.version_info.major == 3 and sys.version_info.minor > 11 else exit(1)'; then - echo "Python > 3.11 detected, forcing poetry update" - # Allow Python 3.12 (e.g., Ubuntu 24.04) - sed -i -e 's/<3.12/<4/g' pyproject.toml - poetry update - fi poetry install --no-root --with dev --with cpu cd .. )