Skip to content

Commit 1c67315

Browse files
committed
update actions to build for Python 3.13
1 parent 1fceee6 commit 1c67315

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
platform: [ubuntu-latest, macos-latest, windows-latest]
13-
python-version: ["3.8", "3.12"]
13+
python-version: ["3.8", "3.13"]
1414
system-hidapi: ["", "--with-system-hidapi"]
1515
libusb-backend: ["", "--with-libusb"]
1616
exclude:

.github/workflows/wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
- name: Setup Python
2020
uses: actions/setup-python@v5
2121
with:
22-
python-version: "3.12"
22+
python-version: "3.13"
2323

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

2828
- name: Build wheels
29-
uses: pypa/cibuildwheel@v2.19.2
29+
uses: pypa/cibuildwheel@v2.21.3
3030
env:
3131
CIBW_BUILD: "cp3*-*"
3232
CIBW_ARCHS_WINDOWS: "auto"
@@ -36,6 +36,6 @@ jobs:
3636
CIBW_BEFORE_ALL_LINUX: yum install -y libusb1-devel libudev-devel || apk add --upgrade libusb-dev eudev-dev
3737

3838
- name: Store artifacts
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
path: wheelhouse/*.whl

0 commit comments

Comments
 (0)