diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2025-05-06 18:07:25 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2025-05-12 21:51:53 -0400 |
commit | 1af219fad6c2abda1eadbd4c48ad541110100f4c (patch) | |
tree | 10227abd3ba441d8cde5d179839fd6d0d603a442 /scripts | |
parent | 6c1d5d912ae34991dbe866d2bbf9dc75a6345a0c (diff) | |
download | kutter-1af219fad6c2abda1eadbd4c48ad541110100f4c.tar.gz kutter-1af219fad6c2abda1eadbd4c48ad541110100f4c.tar.xz kutter-1af219fad6c2abda1eadbd4c48ad541110100f4c.zip |
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>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/klippy-requirements.txt | 7 |
1 files 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 |