Debian Python venv: Klipper changed to Python3

Testet with Python 3.11, the current Python version in Debian Stable.
This commit is contained in:
Juergen 'sysdef' Heine 2025-04-05 11:10:20 +02:00 committed by GitHub
parent 3f62435592
commit ddf29c1fb9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,7 +37,7 @@ create_virtualenv()
report_status "Updating python virtual environment..."
# Create virtualenv if it doesn't already exist
[ ! -d ${PYTHONDIR} ] && virtualenv -p python2 ${PYTHONDIR}
[ ! -d ${PYTHONDIR} ] && virtualenv -p python3 ${PYTHONDIR}
# Install/update dependencies
${PYTHONDIR}/bin/pip install -r ${SRCDIR}/scripts/klippy-requirements.txt