Skip to content

Commit

Permalink
Merge pull request #1451 from rockstorm101/ci-python-3-13
Browse files Browse the repository at this point in the history
 * ci: Add support for Python 3.13 on builds
 * doc: Update supported Python versions
  • Loading branch information
rockstorm101 authored Oct 13, 2024
2 parents 559109a + 427c04e commit 53ce18f
Show file tree
Hide file tree
Showing 3 changed files with 6 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
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Printing",
]
dynamic = [ # these variables are dynamically set at `setup.py`
Expand Down

0 comments on commit 53ce18f

Please sign in to comment.