Skip to content

Commit 837a361

Browse files
authored
Merge pull request #1061 from luxonis/release_v2.28.0.0
Release v2.28.0.0
2 parents f82083c + 669b0c2 commit 837a361

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

.github/workflows/main.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ jobs:
7575
- name: Setup cmake
7676
if: matrix.os == 'macos-latest'
7777
uses: jwlawson/[email protected]
78+
with:
79+
cmake-version: '3.29.x'
7880
- name: Cache .hunter folder
7981
if: matrix.os != 'windows-latest'
8082
uses: actions/cache@v3
@@ -136,6 +138,10 @@ jobs:
136138
matrix:
137139
rpi-os: [rpi-buster, rpi-bullseye, rpi-bookworm]
138140
runs-on: ${{ matrix.rpi-os }}
141+
env:
142+
# workaround required for cache@v3, https://github.com/actions/cache/issues/1428
143+
# to be removed when upgrading the manylinux image
144+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
139145
steps:
140146
- name: Print home directory
141147
run: echo Home directory inside container $HOME
@@ -298,8 +304,12 @@ jobs:
298304
build-linux-x86_64:
299305
needs: build-docstrings
300306
runs-on: ubuntu-latest
307+
env:
308+
# workaround required for cache@v3, https://github.com/actions/cache/issues/1428
309+
# to be removed when upgrading the manylinux image
310+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
301311
container:
302-
image: quay.io/pypa/manylinux2014_x86_64:2024-01-08-eb135ed
312+
image: quay.io/pypa/manylinux2014_x86_64:latest
303313
env:
304314
PLAT: manylinux2014_x86_64
305315
steps:
@@ -362,8 +372,12 @@ jobs:
362372
build-linux-arm64:
363373
needs: build-docstrings
364374
runs-on: [self-hosted, linux, ARM64]
375+
env:
376+
# workaround required for cache@v3, https://github.com/actions/cache/issues/1428
377+
# to be removed when upgrading the manylinux image
378+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
365379
container:
366-
image: quay.io/pypa/manylinux2014_aarch64:2024-01-08-eb135ed
380+
image: quay.io/pypa/manylinux2014_aarch64:latest
367381
env:
368382
PLAT: manylinux2014_aarch64
369383
# Mount local hunter cache directory, instead of transfering to Github and back

.github/workflows/test-install-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
test_macos:
4949
strategy:
5050
matrix:
51-
os: ["macos-11", "macos-12", "macos-13", "macos-14"]
51+
os: ["macos-12", "macos-13", "macos-14"]
5252
runs-on: ${{ matrix.os }}
5353
steps:
5454
- uses: actions/checkout@v3

src/pipeline/datatype/ToFConfigBindings.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ void bind_tofconfig(pybind11::module& m, void* pCallstack){
3838
.def_readwrite("median", &RawToFConfig::median, DOC(dai, RawToFConfig, median))
3939
.def_readwrite("enablePhaseShuffleTemporalFilter", &RawToFConfig::enablePhaseShuffleTemporalFilter, DOC(dai, RawToFConfig, enablePhaseShuffleTemporalFilter))
4040
.def_readwrite("enableBurstMode", &RawToFConfig::enableBurstMode, DOC(dai, RawToFConfig, enableBurstMode))
41+
.def_readwrite("enableDistortionCorrection", &RawToFConfig::enableDistortionCorrection, DOC(dai, RawToFConfig, enableDistortionCorrection))
4142
.def_readwrite("phaseUnwrappingLevel", &RawToFConfig::phaseUnwrappingLevel, DOC(dai, RawToFConfig, phaseUnwrappingLevel))
4243
.def_readwrite("enableFPPNCorrection", &RawToFConfig::enableFPPNCorrection, DOC(dai, RawToFConfig, enableFPPNCorrection))
4344
.def_readwrite("enableOpticalCorrection", &RawToFConfig::enableOpticalCorrection, DOC(dai, RawToFConfig, enableOpticalCorrection))

src/pipeline/node/ToFBindings.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ void bind_tof(pybind11::module& m, void* pCallstack){
3232
.def_readwrite("initialConfig", &ToFProperties::initialConfig, DOC(dai, ToFProperties, initialConfig))
3333
.def_readwrite("numFramesPool", &ToFProperties::numFramesPool, DOC(dai, ToFProperties, numFramesPool))
3434
.def_readwrite("numShaves", &ToFProperties::numShaves, DOC(dai, ToFProperties, numShaves))
35+
.def_readwrite("warpHwIds", &ToFProperties::warpHwIds, DOC(dai, ToFProperties, warpHwIds))
3536
;
3637

3738
// Node

0 commit comments

Comments
 (0)