Skip to content

Commit

Permalink
[Deployment Manager] Remove Python common component from configs (o…
Browse files Browse the repository at this point in the history
…penvinotoolkit#9448)

* Deployment Manager configs: Remove `Python common` component

* Dpeloyment Manager configs: Fixed misprint

* DM configs: Fixed JSON syntax

* DM darwin.json: Removed double comma
  • Loading branch information
artanokhov authored Dec 27, 2021
1 parent c5824b8 commit 2538ae5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 33 deletions.
15 changes: 4 additions & 11 deletions tools/deployment_manager/configs/darwin.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,41 +46,34 @@
"runtime/lib/intel64/pcie-ma2x8x.mvcmd"
]
},
"python_common": {
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/requirements.txt"
]
},
"python3.6": {
"ui_name": "OpenVINO Python API for Python3.6",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.6"
]
},
"python3.7": {
"ui_name": "OpenVINO Python API for Python3.7",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.7"
]
},
"python3.8": {
"ui_name": "OpenVINO Python API for Python3.8",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.8"
]
},
"python3.9": {
"ui_name": "OpenVINO Python API for Python3.9",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.9"
]
Expand Down
15 changes: 4 additions & 11 deletions tools/deployment_manager/configs/linux.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,41 +85,34 @@
"runtime/3rdparty/hddl"
]
},
"python_common": {
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/requirements.txt"
]
},
"python3.6": {
"ui_name": "OpenVINO Python API for Python3.6",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.6"
]
},
"python3.7": {
"ui_name": "OpenVINO Python API for Python3.7",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.7"
]
},
"python3.8": {
"ui_name": "OpenVINO Python API for Python3.8",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.8"
]
},
"python3.9": {
"ui_name": "OpenVINO Python API for Python3.9",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.9"
]
Expand Down
15 changes: 4 additions & 11 deletions tools/deployment_manager/configs/windows.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,41 +74,34 @@
"runtime/3rdparty/hddl"
]
},
"python_common": {
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/requirements.txt"
]
},
"python3.6": {
"ui_name": "OpenVINO Python API for Python3.6",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.6"
]
},
"python3.7": {
"ui_name": "OpenVINO Python API for Python3.7",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.7"
]
},
"python3.8": {
"ui_name": "OpenVINO Python API for Python3.8",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.8"
]
},
"python3.9": {
"ui_name": "OpenVINO Python API for Python3.9",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.9"
]
Expand Down

0 comments on commit 2538ae5

Please sign in to comment.