klippy_requirements: Update dependencies to support Python v3.13

Signed-off-by: Timofey Titovets <nefelim4ag@gmail.com>
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2025-05-06 18:07:25 -04:00
parent 6c1d5d912a
commit 1af219fad6

View File

@ -3,11 +3,12 @@
# typically installed via the command:
# pip install -r klippy-requirements.txt
# The 'cffi' package is used by the "chelper" code
cffi==1.14.6
# greenlet is used by the reactor.py code
greenlet==2.0.2 ; python_version < '3.12'
greenlet==3.0.3 ; python_version >= '3.12'
greenlet==3.1.1 ; python_version >= '3.12'
# cffi is used by "chelper" code and by greenlet
cffi==1.14.6 ; python_version < '3.12'
cffi==1.17.1 ; python_version >= '3.12'
# Jinja2 is used by gcode_macro.py
Jinja2==2.11.3
markupsafe==1.1.1 # Needed by Jinja2