diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2025-02-02 20:51:18 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2025-02-02 20:53:33 -0500 |
commit | 01b0e98ab21d505abcc5be83cca2b4ae1d0651eb (patch) | |
tree | ea9f458b23542001b046216b5d4dfeb735cb29c9 /scripts | |
parent | 638c085ffad94e5ad4b9b953e9bb37e40151bab2 (diff) | |
download | kutter-01b0e98ab21d505abcc5be83cca2b4ae1d0651eb.tar.gz kutter-01b0e98ab21d505abcc5be83cca2b4ae1d0651eb.tar.xz kutter-01b0e98ab21d505abcc5be83cca2b4ae1d0651eb.zip |
klippy-requirements: Require setuptools on python 3.12
The python-can v3.3.4 package requires setuptools to be an explicit
dependency when run on python v3.12, but there is no single version of
setuptools that runs on all supported versions of python. So, tie
setuptools to python versions 3.12 or later.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/klippy-requirements.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/klippy-requirements.txt b/scripts/klippy-requirements.txt index 7fb23540..87e664c6 100644 --- a/scripts/klippy-requirements.txt +++ b/scripts/klippy-requirements.txt @@ -9,3 +9,4 @@ greenlet==3.0.3 ; python_version >= '3.12' Jinja2==2.11.3 python-can==3.3.4 markupsafe==1.1.1 +setuptools==75.6.0 ; python_version >= '3.12' # Needed by python-can |