Skip to content

Commit a15a624

Browse files
committed
setup: support installations with Python3.13
1 parent bbe86c2 commit a15a624

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

scripts/setup/constraints.txt

-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ cbor2==5.4.6
3232
# via -r requirements.zephyr.txt
3333
certifi==2022.12.7
3434
# via requests
35-
cffi==1.15.1
36-
# via cryptography
3735
charset-normalizer==3.0.1
3836
# via requests
3937
click==8.1.3

scripts/setup/requirements.all.txt

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ mypy-protobuf==3.5.0
4343
protobuf==4.24.4
4444
types-protobuf==4.24.0.2
4545

46+
cffi==1.15.0; python_version < "3.13"
47+
cffi==1.17.1; python_version >= "3.13"
4648
cryptography
4749

4850
# python unit tests

scripts/tools/telink/requirements.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
cryptography==41.0.4
2-
cffi==1.15.0
2+
cffi==1.15.0; python_version < "3.13"
3+
cffi==1.17.1; python_version >= "3.13"
34
future==0.18.3
45
pycparser==2.21
56
pypng==0.0.21
6-
PyQRCode==1.2.1
7+
PyQRCode==1.2.1

0 commit comments

Comments
 (0)