Skip to content

Commit

Permalink
Set .python-version to 3.13
Browse files Browse the repository at this point in the history
Add cffi and greenlet pins for 3.13
  • Loading branch information
kageurufu authored and rogerlz committed Jan 7, 2025
1 parent 98aa483 commit 56ece0d
Show file tree
Hide file tree
Showing 4 changed files with 157 additions and 12 deletions.
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.13
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ version = "0.12.1"

requires-python = ">=3.9"
dependencies = [
"cffi==1.15.1",
"cffi==1.17.1 ; python_version >= '3.13'",
"cffi==1.15.1 ; python_version < '3.13'",
"greenlet==3.1 ; python_version >= '3.13'",
"greenlet==3.0.3 ; python_version == '3.12'",
"greenlet==2.0.2 ; python_version < '3.12'",
"greenlet==3.0.3 ; python_version >= '3.12'",
"Jinja2==3.1.4",
"markupsafe==2.1.5",
"numpy~=2.0 ; python_version=='3.9'",
Expand Down
6 changes: 4 additions & 2 deletions scripts/klippy-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# 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
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.0.3 ; python_full_version == '3.12.*'
greenlet==3.1.0 ; python_full_version >= '3.13'
jinja2==3.1.4
markupsafe==2.1.5
numpy==2.0.2 ; python_full_version < '3.10'
Expand Down
Loading

0 comments on commit 56ece0d

Please sign in to comment.