Skip to content

Commit 5f46534

Browse files
authored
[release/2.6] enable py3.13 (#2365)
pip installed requirements.txt and .ci/docker/requirements-ci.txt Local validation: `Successfully installed boto3-1.35.42 botocore-1.35.99 click-8.1.8 fbscribelogger-0.1.7 mypy-1.13.0 pywavelets-1.7.0 s3transfer-0.10.4 tlparse-0.3.25`
1 parent 9c357c3 commit 5f46534

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.ci/docker/requirements-ci.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,8 @@ pillow==11.0.0
160160
#Description: Python Imaging Library fork
161161
#Pinned versions: 10.3.0
162162
#test that import:
163-
164-
protobuf==3.20.2
163+
protobuf==3.20.2 ; python_version <= "3.12"
164+
protobuf==4.25.1 ; python_version == "3.13"
165165
#Description: Google’s data interchange format
166166
#Pinned versions: 3.20.1
167167
#test that import: test_tensorboard.py
@@ -324,7 +324,8 @@ pywavelets==1.7.0 ; python_version >= "3.12"
324324
#Pinned versions: 1.4.1
325325
#test that import:
326326

327-
lxml==5.3.0
327+
lxml==5.3.0 ; python_version <= "3.12"
328+
lxml==6.0.0 ; python_version == "3.13"
328329
#Description: This is a requirement of unittest-xml-reporting
329330

330331
# Python-3.9 binaries
@@ -336,7 +337,8 @@ sympy==1.13.1 ; python_version >= "3.9"
336337
#Pinned versions:
337338
#test that import:
338339

339-
onnx==1.17.0
340+
onnx==1.16.1 ; python_version <= "3.12"
341+
onnx==1.18.0 ; python_version == "3.13"
340342
#Description: Required by mypy and test_public_bindings.py when checking torch.onnx._internal
341343
#Pinned versions:
342344
#test that import:

0 commit comments

Comments
 (0)