From 1af219fad6c2abda1eadbd4c48ad541110100f4c Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Tue, 6 May 2025 18:07:25 -0400 Subject: [PATCH] klippy_requirements: Update dependencies to support Python v3.13 Signed-off-by: Timofey Titovets Signed-off-by: Kevin O'Connor --- scripts/klippy-requirements.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/klippy-requirements.txt b/scripts/klippy-requirements.txt index 5c215e2c..ccf34110 100644 --- a/scripts/klippy-requirements.txt +++ b/scripts/klippy-requirements.txt @@ -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