Skip to content

Commit 9f5dedc

Browse files
authored
Merge pull request #915 from luxonis/hotfix_depthai_sdk
[Hotfix] depthai demo openvino problem
2 parents 5caf106 + dd5db36 commit 9f5dedc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/test_install_requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
run: Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
9494
- name: Install dependencies
9595
shell: pwsh
96-
run: choco install cmake git python pycharm-community -y
96+
run: choco install cmake git python --version 3.10 pycharm-community -y
9797
- name: Install requrirements
9898
run: |
9999
python install_requirements.py

depthai_sdk/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ blobconverter>=1.2.8
55
pytube>=12.1.0
66
--extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-python-snapshot-local/
77
# This specific commit is needed for the debug mode (oak.show_graph()). TODO: update when depthai has new release
8-
depthai>=2.20.0.0
8+
depthai>=2.20.1.0
99
PyTurboJPEG==1.6.4
1010
marshmallow==3.17.0
1111
distinctipy

depthai_sdk/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='depthai-sdk',
13-
version='1.9.2',
13+
version='1.9.3',
1414
description='This package provides an abstraction of the DepthAI API library.',
1515
long_description=io.open("README.md", encoding="utf-8").read(),
1616
long_description_content_type="text/markdown",

depthai_sdk/src/depthai_sdk/managers/blob_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def getBlob(self, shaves:int = 6, openvinoVersion: dai.OpenVINO.Version = None,
8686
if self._useBlob:
8787
return self._blobPath
8888
version = openvinoVersion.name.replace("VERSION_", "").replace("_", ".")
89-
if version == "2022.1":
89+
if version == "2022.1" or version == "UNIVERSAL":
9090
version = "2021.4" #FIXME
9191
if self._useZoo:
9292
try:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ depthai-sdk
66
--extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-depthai-data-local/wheels/
77
pyqt5>5,<5.15.6 ; platform_machine != "armv6l" and platform_machine != "armv7l" and platform_machine != "aarch64" and platform_machine != "arm64"
88
--extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-python-snapshot-local/
9-
depthai>=2.20.0.0
9+
depthai>=2.20.1.0
1010
Qt.py

0 commit comments

Comments
 (0)