Skip to content

Commit

Permalink
update actions to build for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
prusnak committed Nov 6, 2024
1 parent 1fceee6 commit 780bda9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.12"]
python-version: ["3.8", "3.13"]
system-hidapi: ["", "--with-system-hidapi"]
libusb-backend: ["", "--with-libusb"]
exclude:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"

- name: Setup QEMU
if: ${{ runner.os == 'Linux' }}
uses: docker/setup-qemu-action@v3

- name: Build wheels
uses: pypa/cibuildwheel@v2.19.2
uses: pypa/cibuildwheel@v2
env:
CIBW_BUILD: "cp3*-*"
CIBW_ARCHS_WINDOWS: "auto"
Expand All @@ -36,6 +36,6 @@ jobs:
CIBW_BEFORE_ALL_LINUX: yum install -y libusb1-devel libudev-devel || apk add --upgrade libusb-dev eudev-dev

- name: Store artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: wheelhouse/*.whl

0 comments on commit 780bda9

Please sign in to comment.