Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
3 changes: 2 additions & 1 deletion tests/e2e_tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
# for common utils
py-cpuinfo==9.0.0
scipy>=1.5.4,<1.17
opencv-python>=4.5; sys_platform != "darwin"
opencv-python>=4.5; sys_platform != "darwin" and python_version < '3.13'
opencv-python>=4.11.0.86; sys_platform != "darwin" and python_version >= '3.13'
opencv-python==4.12.0.88; sys_platform == "darwin"
unittest-xml-reporting==3.2.0
lpips==0.1.4
Expand Down
3 changes: 1 addition & 2 deletions tests/requirements_tensorflow
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ pytest-html==4.1.1
transformers==4.45.1
# install exact keras version since tensorflow depends and has no upper bound for it
keras==3.8.0
tensorflow==2.18.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
Expand Down
Loading