@@ -138,10 +138,12 @@ numba==0.60.0 ; python_version == "3.12" and platform_machine != "s390x"
138138#test_binary_ufuncs.py
139139numpy==1.22.4; python_version == "3.10"
140140numpy==1.26.2; python_version == "3.11" or python_version == "3.12"
141- numpy==2.1.2; python_version >= "3.13"
141+ numpy==2.1.2; python_version >= "3.13" and python_version < "3.14"
142+ numpy==2.3.4; python_version >= "3.14"
142143
143144pandas==2.0.3; python_version < "3.13"
144- pandas==2.2.3; python_version >= "3.13"
145+ pandas==2.2.3; python_version >= "3.13" and python_version < "3.14"
146+ pandas==2.3.3; python_version >= "3.14"
145147
146148#onnxruntime
147149#Description: scoring engine for Open Neural Network Exchange (ONNX) models
@@ -153,7 +155,8 @@ opt-einsum==3.3
153155#Pinned versions: 3.3
154156#test that import: test_linalg.py
155157
156- optree==0.13.0
158+ optree==0.13.0 ; python_version < "3.14"
159+ optree==0.17.0 ; python_version >= "3.14"
157160#Description: A library for tree manipulation
158161#Pinned versions: 0.13.0
159162#test that import: test_vmap.py, test_aotdispatch.py, test_dynamic_shapes.py,
@@ -252,7 +255,8 @@ scikit-image==0.22.0
252255#test that import:
253256
254257scipy==1.10.1 ; python_version <= "3.11"
255- scipy==1.14.1 ; python_version >= "3.12"
258+ scipy==1.14.1 ; python_version > "3.11" and python_version < "3.14"
259+ scipy==1.16.2 ; python_version >= "3.14"
256260# Pin SciPy because of failing distribution tests (see #60347)
257261#Description: scientific python
258262#Pinned versions: 1.10.1
@@ -324,7 +328,8 @@ pywavelets==1.7.0 ; python_version >= "3.12"
324328#Pinned versions: 1.4.1
325329#test that import:
326330
327- lxml==5.3.0
331+ lxml==5.3.0 ; python_version < "3.14"
332+ lxml==6.0.2 ; python_version >= "3.14"
328333#Description: This is a requirement of unittest-xml-reporting
329334
330335PyGithub==2.3.0
@@ -334,7 +339,9 @@ sympy==1.13.3
334339#Pinned versions:
335340#test that import:
336341
337- onnx==1.19.1
342+ onnx==1.19.1 ; python_version < "3.14"
343+ # Unpin once Python 3.14 is supported. See onnxruntime issue 26309.
344+ onnx==1.18.0 ; python_version == "3.14"
338345#Description: Required by onnx tests, and mypy and test_public_bindings.py when checking torch.onnx._internal
339346#Pinned versions:
340347#test that import:
@@ -359,7 +366,7 @@ pwlf==2.2.1
359366#test that import: test_sac_estimator.py
360367
361368# To build PyTorch itself
362- pyyaml==6.0.2
369+ pyyaml==6.0.3
363370pyzstd
364371setuptools==78.1.1
365372packaging==23.1
0 commit comments