Skip to content

Commit

Permalink
ci: Add support for Python 3.13 on builds
Browse files Browse the repository at this point in the history
wxPython 4.2.2 added support for Python 3.13 and therefore we can now
enable builds for it as well.
  • Loading branch information
rockstorm101 committed Oct 13, 2024
1 parent b3a78c6 commit f4f5489
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
env:
# we only support what's supported by wxPython, therefore we skip:
# * PyPy Python implementation
# * Python 3.6, 3.7 and 3.13 versions
# * Python 3.6 and 3.7 versions
# * musl C implementation
CIBW_SKIP: "pp* cp36* cp37* cp313* *-musllinux*"
CIBW_SKIP: "pp* cp36* cp37* *-musllinux*"
# produce ARM wheels on Linux in addition to 32 and 64 bit
CIBW_ARCHS_LINUX: auto aarch64
# produce wheels for macOS to support both Intel and Apple silicon
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13-dev"]
# Unit testing uses functions not available on Python < 3.11
python-version: ["3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand All @@ -65,6 +65,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Install Printrun dependencies for unit testing
run: |
Expand Down

0 comments on commit f4f5489

Please sign in to comment.