Skip to content

Commit

Permalink
Merge pull request #1061 from luxonis/release_v2.28.0.0
Browse files Browse the repository at this point in the history
Release v2.28.0.0
  • Loading branch information
moratom committed Aug 19, 2024
2 parents f82083c + 669b0c2 commit 837a361
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ jobs:
- name: Setup cmake
if: matrix.os == 'macos-latest'
uses: jwlawson/[email protected]
with:
cmake-version: '3.29.x'
- name: Cache .hunter folder
if: matrix.os != 'windows-latest'
uses: actions/cache@v3
Expand Down Expand Up @@ -136,6 +138,10 @@ jobs:
matrix:
rpi-os: [rpi-buster, rpi-bullseye, rpi-bookworm]
runs-on: ${{ matrix.rpi-os }}
env:
# workaround required for cache@v3, https://github.com/actions/cache/issues/1428
# to be removed when upgrading the manylinux image
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
steps:
- name: Print home directory
run: echo Home directory inside container $HOME
Expand Down Expand Up @@ -298,8 +304,12 @@ jobs:
build-linux-x86_64:
needs: build-docstrings
runs-on: ubuntu-latest
env:
# workaround required for cache@v3, https://github.com/actions/cache/issues/1428
# to be removed when upgrading the manylinux image
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
container:
image: quay.io/pypa/manylinux2014_x86_64:2024-01-08-eb135ed
image: quay.io/pypa/manylinux2014_x86_64:latest
env:
PLAT: manylinux2014_x86_64
steps:
Expand Down Expand Up @@ -362,8 +372,12 @@ jobs:
build-linux-arm64:
needs: build-docstrings
runs-on: [self-hosted, linux, ARM64]
env:
# workaround required for cache@v3, https://github.com/actions/cache/issues/1428
# to be removed when upgrading the manylinux image
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
container:
image: quay.io/pypa/manylinux2014_aarch64:2024-01-08-eb135ed
image: quay.io/pypa/manylinux2014_aarch64:latest
env:
PLAT: manylinux2014_aarch64
# Mount local hunter cache directory, instead of transfering to Github and back
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-install-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
test_macos:
strategy:
matrix:
os: ["macos-11", "macos-12", "macos-13", "macos-14"]
os: ["macos-12", "macos-13", "macos-14"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions src/pipeline/datatype/ToFConfigBindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ void bind_tofconfig(pybind11::module& m, void* pCallstack){
.def_readwrite("median", &RawToFConfig::median, DOC(dai, RawToFConfig, median))
.def_readwrite("enablePhaseShuffleTemporalFilter", &RawToFConfig::enablePhaseShuffleTemporalFilter, DOC(dai, RawToFConfig, enablePhaseShuffleTemporalFilter))
.def_readwrite("enableBurstMode", &RawToFConfig::enableBurstMode, DOC(dai, RawToFConfig, enableBurstMode))
.def_readwrite("enableDistortionCorrection", &RawToFConfig::enableDistortionCorrection, DOC(dai, RawToFConfig, enableDistortionCorrection))
.def_readwrite("phaseUnwrappingLevel", &RawToFConfig::phaseUnwrappingLevel, DOC(dai, RawToFConfig, phaseUnwrappingLevel))
.def_readwrite("enableFPPNCorrection", &RawToFConfig::enableFPPNCorrection, DOC(dai, RawToFConfig, enableFPPNCorrection))
.def_readwrite("enableOpticalCorrection", &RawToFConfig::enableOpticalCorrection, DOC(dai, RawToFConfig, enableOpticalCorrection))
Expand Down
1 change: 1 addition & 0 deletions src/pipeline/node/ToFBindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ void bind_tof(pybind11::module& m, void* pCallstack){
.def_readwrite("initialConfig", &ToFProperties::initialConfig, DOC(dai, ToFProperties, initialConfig))
.def_readwrite("numFramesPool", &ToFProperties::numFramesPool, DOC(dai, ToFProperties, numFramesPool))
.def_readwrite("numShaves", &ToFProperties::numShaves, DOC(dai, ToFProperties, numShaves))
.def_readwrite("warpHwIds", &ToFProperties::warpHwIds, DOC(dai, ToFProperties, warpHwIds))
;

// Node
Expand Down

0 comments on commit 837a361

Please sign in to comment.