Skip to content

Commit

Permalink
Merge pull request #857 from luxonis/armv6l_wheels
Browse files Browse the repository at this point in the history
Raspberry Pi Zero compatible wheels (armv6l)
  • Loading branch information
themarpe authored Jul 5, 2023
2 parents cc5370b + 9326a00 commit 3ca2b54
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,15 @@ jobs:
run: python3 -m pip wheel . -w ./wheelhouse/ --verbose
- name: Auditing wheel
run: for whl in wheelhouse/*.whl; do auditwheel repair "$whl" --plat linux_armv7l -w wheelhouse/audited/; done
- name: Install tweaked auditwheel and add armv6l tag
run: |
python3 -m pip install git+https://github.com/luxonis/auditwheel@main
for whl in wheelhouse/*.whl; do python3 -m auditwheel addtag -t linux_armv7l linux_armv6l -w wheelhouse/postaudited/ "$whl"; done
- name: Archive wheel artifacts
uses: actions/upload-artifact@v3
with:
name: audited-wheels
path: wheelhouse/audited/
path: wheelhouse/postaudited/
- name: Deploy wheels to artifactory (if not a release)
if: startsWith(github.ref, 'refs/tags/v') != true
run: bash ./ci/upload-artifactory.sh
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[build-system]
requires = ["setuptools", "wheel", "mypy", "cmake==3.25"]
requires = ["setuptools", "wheel", "mypy<=1.3.0", "cmake==3.25"]

0 comments on commit 3ca2b54

Please sign in to comment.