Skip to content

Commit

Permalink
Build wheels for more versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Lauszus committed Nov 7, 2024
1 parent 65f1276 commit 609a8d3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ on: [push, pull_request]
jobs:
armv7l:
name: Build armv7l wheels
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
docker_images: ['balenalib/armv7hf-debian:stretch', 'balenalib/armv7hf-debian:buster', 'balenalib/armv7hf-debian:bullseye']
docker_images: ['balenalib/armv7hf-debian:stretch', 'balenalib/armv7hf-debian:buster', 'balenalib/armv7hf-debian:bullseye', 'balenalib/armv7hf-debian:bookworm']
steps:
- uses: actions/checkout@v3
- name: Build ${{ matrix.docker_images }} wheel
Expand All @@ -24,10 +24,10 @@ jobs:
path: dist
amd64:
name: Build amd64 wheels
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -54,7 +54,7 @@ jobs:
path: dist
sdist:
name: Build sdist
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
Expand All @@ -73,7 +73,7 @@ jobs:
release:
needs: [armv7l, amd64, sdist]
name: Release
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Set up Python 3.10
uses: actions/setup-python@v4
Expand Down

0 comments on commit 609a8d3

Please sign in to comment.