Don't add mxnet extras for openvino-dev on macOS arm64 (#20403)
This commit is contained in:
parent
4da61fc7e7
commit
2604c33d1b
|
|
@ -885,7 +885,7 @@ jobs:
|
|||
# Find and install OV dev wheel
|
||||
pushd ${INSTALL_DIR}/tools
|
||||
ov_dev_wheel_name=$(find . -name 'openvino_dev*.whl')
|
||||
python3 -m pip install $ov_dev_wheel_name[mxnet,caffe,kaldi,onnx,tensorflow2]
|
||||
python3 -m pip install $ov_dev_wheel_name[mxnet,caffe,kaldi,onnx,tensorflow2,pytorch]
|
||||
popd
|
||||
|
||||
#
|
||||
|
|
|
|||
|
|
@ -482,7 +482,7 @@ jobs:
|
|||
# Find and install OV dev wheel
|
||||
pushd ${{ env.INSTALL_DIR }}/tools
|
||||
ov_dev_wheel_name=$(find . -name 'openvino_dev*.whl')
|
||||
python3 -m pip install $ov_dev_wheel_name[mxnet,caffe,kaldi,onnx,tensorflow2]
|
||||
python3 -m pip install $ov_dev_wheel_name[mxnet,caffe,kaldi,onnx,tensorflow2,pytorch]
|
||||
popd
|
||||
|
||||
- name: nGraph and IE Python Bindings Tests
|
||||
|
|
|
|||
|
|
@ -303,7 +303,7 @@ jobs:
|
|||
|
||||
# Find and install the dev OV wheel
|
||||
$ovDevWheelPath=Get-ChildItem -Path "${{ env.INSTALL_DIR }}\tools" -Filter openvino_dev*.whl | % { $_.FullName }
|
||||
python3 -m pip install "$ovDevWheelPath[mxnet,caffe,kaldi,onnx,tensorflow2]"
|
||||
python3 -m pip install "$ovDevWheelPath[mxnet,caffe,kaldi,onnx,tensorflow2,pytorch]"
|
||||
|
||||
- name: Python API 1.0 Tests
|
||||
shell: cmd
|
||||
|
|
|
|||
|
|
@ -36,7 +36,10 @@ set(WHEEL_BUILD "${OpenVINO_VERSION_BUILD}" CACHE STRING "Build number of this r
|
|||
ov_cpack_add_component(${OV_CPACK_COMP_OPENVINO_DEV_REQ_FILES} HIDDEN)
|
||||
|
||||
set(REQUIREMENTS_IN "${CMAKE_CURRENT_SOURCE_DIR}/requirements_dev.txt.in")
|
||||
set(EXTRAS_LIST _ caffe kaldi mxnet onnx pytorch tensorflow tensorflow2)
|
||||
set(EXTRAS_LIST _ caffe kaldi onnx pytorch tensorflow tensorflow2)
|
||||
if(NOT (APPLE AND AARCH64))
|
||||
list(APPEND EXTRAS_LIST mxnet)
|
||||
endif()
|
||||
|
||||
foreach(EXTRAS IN LISTS EXTRAS_LIST)
|
||||
if(EXTRAS STREQUAL "_")
|
||||
|
|
|
|||
Loading…
Reference in New Issue