Skip to content

Commit

Permalink
ci: Test on Python 3.13
Browse files Browse the repository at this point in the history
Note that wheels are not yet published, because Python 3.13 is not yet
ABI stable.

Signed-off-by: Matt Wozniski <[email protected]>
Signed-off-by: Pablo Galindo <[email protected]>
  • Loading branch information
godlygeek authored and pablogsal committed Jun 5, 2024
1 parent 2da7127 commit 62dd81a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: "cp3{7..12}-${{ matrix.wheel_type }}"
CIBW_BUILD: "cp3{7..13}-${{ matrix.wheel_type }}"
CIBW_ARCHS_LINUX: auto aarch64
CIBW_PRERELEASE_PYTHONS: True
- uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -138,8 +138,7 @@ jobs:
sudo apt-get install -qy \
gdb \
python${{matrix.python_version}}-dev \
python${{matrix.python_version}}-dbg \
python${{matrix.python_version}}-distutils
python${{matrix.python_version}}-dbg
- name: Install Python dependencies
run: |
python${{matrix.python_version}} -m pip install --upgrade pip
Expand Down Expand Up @@ -309,6 +308,7 @@ jobs:
mv dist/sdist/*.tar.gz dist/
mv dist/*-wheels/*.whl dist/
rmdir dist/{sdist,*-wheels}
rm -f dist/*cp313*
ls -R dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down

0 comments on commit 62dd81a

Please sign in to comment.