Skip to content

Commit 84daffe

Browse files
authored
Merge pull request #1083 from luxonis/release_v2.29.0.0
Release v2.29.0.0
2 parents 50f509b + a0b1842 commit 84daffe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+290
-26
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
runs-on: windows-latest
189189
strategy:
190190
matrix:
191-
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
191+
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
192192
python-architecture: [x64, x86]
193193
fail-fast: false
194194
steps:
@@ -244,7 +244,7 @@ jobs:
244244
needs: build-docstrings
245245
strategy:
246246
matrix:
247-
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
247+
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
248248
os: [macos-13, macos-14] # macos-13 is x64, macos-14 is arm64
249249
runs-on: ${{ matrix.os }}
250250
steps:
@@ -352,7 +352,7 @@ jobs:
352352
/opt/python/cp38-cp38/bin/python3.8 setup.py sdist --formats=gztar
353353
mv dist/* wheelhouse/audited/
354354
- name: Build wheels
355-
run: for PYBIN in /opt/python/cp3{7..12}*/bin; do "${PYBIN}/pip" wheel . -w ./wheelhouse/ --verbose; done
355+
run: for PYBIN in /opt/python/cp3{7..13}*/bin; do "${PYBIN}/pip" wheel . -w ./wheelhouse/ --verbose; done
356356
- name: Audit wheels
357357
run: for whl in wheelhouse/*.whl; do auditwheel repair "$whl" --plat $PLAT -w wheelhouse/audited/; done
358358
- name: Archive wheel artifacts
@@ -413,7 +413,7 @@ jobs:
413413
if: startsWith(github.ref, 'refs/tags/v') != true
414414
run: echo "BUILD_COMMIT_HASH=${{github.sha}}" >> $GITHUB_ENV
415415
- name: Building wheels
416-
run: for PYBIN in /opt/python/cp3{7..12}*/bin; do "${PYBIN}/pip" wheel . -w ./wheelhouse/ --verbose; done
416+
run: for PYBIN in /opt/python/cp3{7..13}*/bin; do "${PYBIN}/pip" wheel . -w ./wheelhouse/ --verbose; done
417417
- name: Auditing wheels
418418
run: for whl in wheelhouse/*.whl; do auditwheel repair "$whl" --plat $PLAT -w wheelhouse/audited/; done
419419
- name: Archive wheel artifacts

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
container_image: ["fedora:34", "fedora:35", "fedora:36", "ubuntu:18.04", "ubuntu:20.04", "ubuntu:22.04", "ubuntu:rolling"]
19+
container_image: ["fedora:34", "fedora:35", "fedora:36", "ubuntu:20.04", "ubuntu:22.04", "ubuntu:24.04", "ubuntu:rolling"]
2020
container:
2121
image: ${{ matrix.container_image }}
2222
steps:

examples/Camera/camera_undistort.py

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python3
2+
13
import depthai as dai
24
import cv2
35

examples/Camera/thermal_cam.py

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python3
2+
13
import depthai as dai
24
import cv2
35
import numpy as np

examples/Cast/cast_blur.py

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python3
2+
13
import depthai as dai
24
import cv2
35
from pathlib import Path

examples/Cast/cast_concat.py

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python3
2+
13
import numpy as np
24
import cv2
35
import depthai as dai

examples/Cast/cast_diff.py

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python3
2+
13
import cv2
24
import depthai as dai
35
from pathlib import Path

examples/ColorCamera/rgb_scene.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python3
2+
13
import cv2
24
import depthai as dai
35
from itertools import cycle

examples/ColorCamera/rgb_undistort.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python3
2+
13
import cv2
24
import depthai as dai
35
import numpy as np

0 commit comments

Comments
 (0)