@@ -136,10 +136,11 @@ numba==0.61.2 ; python_version > "3.9"
136136#test_nn.py, test_namedtensor.py, test_linalg.py, test_jit_cuda_fuser.py,
137137#test_jit.py, test_indexing.py, test_datapipe.py, test_dataloader.py,
138138#test_binary_ufuncs.py
139- numpy==2.0.2 ; python_version == "3.9"
140- numpy==2.1.2 ; python_version > "3.9 "
139+ numpy==2.1.2 ; python_version > "3.9" and python_version < "3.14 "
140+ numpy==2.3.4 ; python_version >= "3.14 "
141141
142- pandas==2.2.3
142+ pandas==2.2.3; python_version >= "3.9" and python_version < "3.14"
143+ pandas==2.3.3; python_version >= "3.14"
143144
144145#onnxruntime
145146#Description: scoring engine for Open Neural Network Exchange (ONNX) models
@@ -151,7 +152,8 @@ opt-einsum==3.3
151152#Pinned versions: 3.3
152153#test that import: test_linalg.py
153154
154- optree==0.13.0
155+ optree==0.13.0 ; python_version < "3.14"
156+ optree==0.17.0 ; python_version >= "3.14"
155157#Description: A library for tree manipulation
156158#Pinned versions: 0.13.0
157159#test that import: test_vmap.py, test_aotdispatch.py, test_dynamic_shapes.py,
@@ -249,8 +251,8 @@ scikit-image==0.22.0
249251#Pinned versions: 0.20.3
250252#test that import:
251253
252- scipy==1.13 .1 ; python_version == "3.9"
253- scipy==1.14.1 ; python_version > "3.9 "
254+ scipy==1.14 .1 ; python_version > "3.9" and python_version < "3.14 "
255+ scipy==1.16.2 ; python_version >= "3.14 "
254256# Pin SciPy because of failing distribution tests (see #60347)
255257#Description: scientific python
256258#Pinned versions: 1.10.1
@@ -321,7 +323,8 @@ pywavelets==1.7.0 ; python_version >= "3.12"
321323#Pinned versions: 1.4.1
322324#test that import:
323325
324- lxml==5.3.0
326+ lxml==5.3.0 ; python_version < "3.14"
327+ lxml==6.0.2 ; python_version >= "3.14"
325328#Description: This is a requirement of unittest-xml-reporting
326329
327330PyGithub==2.3.0
@@ -331,7 +334,9 @@ sympy==1.13.3
331334#Pinned versions:
332335#test that import:
333336
334- onnx==1.19.1
337+ onnx==1.19.1 ; python_version < "3.14"
338+ # Unpin once Python 3.14 is supported. See onnxruntime issue 26309.
339+ onnx==1.18.0 ; python_version == "3.14"
335340#Description: Required by onnx tests, and mypy and test_public_bindings.py when checking torch.onnx._internal
336341#Pinned versions:
337342#test that import:
@@ -356,7 +361,7 @@ pwlf==2.2.1
356361#test that import: test_sac_estimator.py
357362
358363# To build PyTorch itself
359- pyyaml==6.0.2
364+ pyyaml==6.0.3
360365pyzstd
361366setuptools==78.1.1
362367packaging==23.1
0 commit comments