lines
This commit is contained in:
parent
0ba9357e2c
commit
01a74dc168
@ -427,6 +427,7 @@ def get_package_dir(install_cfg):
|
||||
py_package_path = dirs[0]
|
||||
return py_package_path
|
||||
|
||||
|
||||
def concat_files(output_file, input_files):
|
||||
with open(output_file, 'w', encoding='utf-8') as outfile:
|
||||
for filename in input_files:
|
||||
@ -435,6 +436,7 @@ def concat_files(output_file, input_files):
|
||||
outfile.write(content)
|
||||
return output_file
|
||||
|
||||
|
||||
platforms = ['linux', 'win32', 'darwin']
|
||||
if not any(pl in sys.platform for pl in platforms):
|
||||
sys.exit(f'Unsupported platform: {sys.platform}, expected: linux, win32, darwin')
|
||||
|
2
src/plugins/intel_cpu/thirdparty/mkl-dnn
vendored
2
src/plugins/intel_cpu/thirdparty/mkl-dnn
vendored
@ -1 +1 @@
|
||||
Subproject commit 82ca2f931c1d588b67d154d873136d4af1ffb3a8
|
||||
Subproject commit 7cd4218a3d45c2c7e7b321dc825c3635a723b60e
|
2
thirdparty/open_model_zoo
vendored
2
thirdparty/open_model_zoo
vendored
@ -1 +1 @@
|
||||
Subproject commit bc92ceb1d3f685f4c98eccd9320aff25401feee2
|
||||
Subproject commit f18c014ad4173babaf5554aa7930a66701f80bf6
|
2
thirdparty/protobuf/protobuf
vendored
2
thirdparty/protobuf/protobuf
vendored
@ -1 +1 @@
|
||||
Subproject commit 6c6b0778b70f35f93c2f0dee30e5d12ad2a83eea
|
||||
Subproject commit 52b2447247f535663ac1c292e088b4b27d2910ef
|
@ -205,6 +205,7 @@ with (SCRIPT_DIR / 'requirements.txt').open() as requirements:
|
||||
in pkg_resources.parse_requirements(requirements)
|
||||
]
|
||||
|
||||
|
||||
def concat_files(output_file, input_files):
|
||||
with open(output_file, 'w', encoding='utf-8') as outfile:
|
||||
for filename in input_files:
|
||||
@ -213,6 +214,7 @@ def concat_files(output_file, input_files):
|
||||
outfile.write(content)
|
||||
return output_file
|
||||
|
||||
|
||||
description_md = SCRIPT_DIR.parents[1] / 'docs' / 'install_guides' / 'pypi-openvino-dev.md'
|
||||
md_files = [description_md, SCRIPT_DIR.parents[1] / 'docs' / 'install_guides' / 'pre-release-note.md']
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user