Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ attrs==25.4.0
distro==1.9.0
h5py>=3.1.0,<3.16.0
Jinja2>=2.11.2
pandas>=1.3.5
pandas>=2.3.3
pymongo>=3.12.0
PyYAML>=5.4.1
scipy>=1.11.1; python_version >= "3.9"
Expand Down
6 changes: 3 additions & 3 deletions tests/layer_tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
-c ../constraints.txt
# paddlepaddle # ticket 95904
numpy
onnxruntime>=1.18.0,<=1.19.2; python_version <= '3.9'
onnxruntime>=1.18.0,<=1.19.2
onnxruntime>=1.18.0; python_version >= '3.10'
requests
torch
torchvision; platform_machine == 'arm64' and python_version >= '3.9'
torchvision; platform_machine == 'arm64'
torchvision; platform_machine != 'arm64'
sympy; platform_machine == 'arm64' and python_version >= '3.9'
sympy; platform_machine == 'arm64'
sympy; platform_machine != 'arm64'
transformers
packaging
Expand Down
4 changes: 1 addition & 3 deletions tests/requirements_tensorflow
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@ transformers==4.45.1
# install exact keras version since tensorflow depends and has no upper bound for it
keras==3.13.0; python_version >= "3.13"
keras==3.12.0; python_version < "3.13"
tensorflow==2.20.0; platform_system != "Darwin" or platform_machine != "x86_64"
tensorflow==2.16.2; platform_system == "Darwin" and platform_machine == "x86_64"
tensorflow==2.20.0
# install explicit version of wrapt to avoid "this __dict__ descriptor does not support '_DictWrapper' objects" error from TensorFlow 2.18
wrapt==1.15.0; python_version >= "3.12"
# tensorflow-text is not available for both Windows and ARM platforms
#tensorflow-text==2.19.0; python_version < "3.13" and platform_system == "Linux" and platform_machine == "x86_64" # ticket 179327
tensorflow-hub==0.16.1
jax==0.5.0; (platform_system != "Darwin" or platform_machine != "x86_64")
# tensorflow 2.16.2 depends on ml-dtypes~=0.3.1 and jax 0.4.35 depends on ml-dtypes>=0.4.0
jax==0.4.33; (platform_system == "Darwin" and platform_machine == "x86_64")
defusedxml==0.7.1
Loading