-
-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move requirements to pyproject.toml (#502)
* Move requirements to pyproject.toml Set up enough of pyproject.toml to be valid as a project We already effectively had a minimum python version of 3.9 (due to dependencies), this change merely denotes that. regenerating `scripts/klippy-requirements.txt` and `scripts/requirements_dev.txt` can be done with `uv export -o scripts/klippy-requirements.txt --no-hashes` and `uv export -o scripts/requirements_dev.txt --no-hashes --dev-only` * Set .python-version to 3.13 Add cffi and greenlet pins for 3.13 * feedback --------- Co-authored-by: Rogerio Goncalves <[email protected]>
- Loading branch information
Showing
6 changed files
with
824 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
# This file describes the Python virtualenv package requirements for | ||
# the Klipper host software (Klippy). These package requirements are | ||
# typically installed via the command: | ||
# pip install -r klippy-requirements.txt | ||
cffi==1.15.1 | ||
# This file was autogenerated by uv via the following command: | ||
# uv export -o scripts/klippy-requirements.txt --no-dev --no-hashes | ||
aenum==3.1.15 | ||
cffi==1.15.1 ; python_full_version < '3.13' | ||
cffi==1.17.1 ; python_full_version >= '3.13' | ||
greenlet==2.0.2 ; python_full_version < '3.12' | ||
greenlet==3.0.3 ; python_full_version == '3.12.*' | ||
greenlet==3.1.0 ; python_full_version >= '3.13' | ||
jinja2==3.1.5 | ||
markupsafe==2.1.5 | ||
numpy==2.0.2 ; python_full_version < '3.10' | ||
numpy==2.2.0 ; python_full_version >= '3.10' | ||
pycparser==2.21 | ||
pyserial==3.4 | ||
greenlet==2.0.2 ; python_version < '3.12' | ||
greenlet==3.0.3 ; python_version >= '3.12' | ||
Jinja2==3.1.4 | ||
python-can==3.3.4 | ||
markupsafe==2.1.5 | ||
numpy==1.26.4 | ||
windows-curses==2.4.0 ; sys_platform == 'win32' | ||
wrapt==1.16.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
# This file describes the Python virtualenv package requirements for | ||
# klipper CI checks and local development. | ||
ruff==0.7.1 | ||
# This file was autogenerated by uv via the following command: | ||
# uv export -o scripts/requirements_dev.txt --only-dev --no-hashes | ||
cfgv==3.4.0 | ||
distlib==0.3.9 | ||
filelock==3.16.1 | ||
identify==2.6.5 | ||
nodeenv==1.9.1 | ||
platformdirs==4.3.6 | ||
pre-commit==4.0.1 | ||
pyyaml==6.0.2 | ||
ruff==0.8.4 | ||
virtualenv==20.28.1 |
Oops, something went wrong.