Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PyOV] Exclude a specific tensorflow version which does not support Python 3.8 on MacOS #26507

Merged
merged 3 commits into from
Sep 12, 2024
Merged
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 tools/mo/requirements_tf.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
-c ../constraints.txt
h5py
tensorflow>=1.15.5,<2.18.0
tensorflow>=1.15.5,<2.18.0; platform_system != 'darwin' or python_version != '3.8'
tensorflow>=1.15.5,<2.18.0,!=2.13.1; platform_system == 'darwin' and python_version == '3.8' # Explanation: 151865
numpy>=1.16.6,<1.27
networkx
defusedxml
Expand Down
3 changes: 2 additions & 1 deletion tools/mo/requirements_tf2.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
-c ../constraints.txt
h5py
tensorflow>=2.5,<2.18.0
tensorflow>=2.5,<2.18.0; platform_system != 'darwin' or python_version != '3.8'
tensorflow>=2.5,<2.18.0,!=2.13.1; platform_system == 'darwin' and python_version == '3.8' # Explanation: 151865
numpy>=1.16.6,<1.27
networkx
defusedxml
Expand Down
Loading