Skip to content

Commit

Permalink
setup: support installations with Python3.13 (#36549)
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamdp authored Nov 19, 2024
1 parent 918f11e commit 6012d99
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 0 additions & 2 deletions scripts/setup/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ cbor2==5.4.6
# via -r requirements.zephyr.txt
certifi==2022.12.7
# via requests
cffi==1.15.1
# via cryptography
charset-normalizer==3.0.1
# via requests
click==8.1.3
Expand Down
2 changes: 2 additions & 0 deletions scripts/setup/requirements.all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ mypy-protobuf==3.5.0
protobuf==4.24.4
types-protobuf==4.24.0.2

cffi==1.15.0; python_version < "3.13"
cffi==1.17.1; python_version >= "3.13"
cryptography

# python unit tests
Expand Down
3 changes: 2 additions & 1 deletion scripts/tools/telink/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
cryptography==43.0.1
cffi==1.15.0
cffi==1.15.0; python_version < "3.13"
cffi==1.17.1; python_version >= "3.13"
future==0.18.3
pycparser==2.21
pypng==0.0.21
Expand Down

0 comments on commit 6012d99

Please sign in to comment.