Skip to content

Commit 0cb4ae0

Browse files
godlygeekpablogsal
authored andcommitted
ci: Test on Python 3.13
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]>
1 parent e842d93 commit 0cb4ae0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build_wheels.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- name: Build wheels
6969
uses: pypa/[email protected]
7070
env:
71-
CIBW_BUILD: "cp3{7..12}-${{ matrix.wheel_type }}"
71+
CIBW_BUILD: "cp3{7..13}-${{ matrix.wheel_type }}"
7272
CIBW_ARCHS_LINUX: auto aarch64
7373
CIBW_PRERELEASE_PYTHONS: True
7474
- uses: actions/upload-artifact@v4
@@ -120,7 +120,7 @@ jobs:
120120
strategy:
121121
fail-fast: false
122122
matrix:
123-
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
123+
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
124124
steps:
125125
- uses: actions/checkout@v4
126126
- name: Set up Python
@@ -138,8 +138,7 @@ jobs:
138138
sudo apt-get install -qy \
139139
gdb \
140140
python${{matrix.python_version}}-dev \
141-
python${{matrix.python_version}}-dbg \
142-
python${{matrix.python_version}}-distutils
141+
python${{matrix.python_version}}-dbg
143142
- name: Install Python dependencies
144143
run: |
145144
python${{matrix.python_version}} -m pip install --upgrade pip
@@ -309,6 +308,7 @@ jobs:
309308
mv dist/sdist/*.tar.gz dist/
310309
mv dist/*-wheels/*.whl dist/
311310
rmdir dist/{sdist,*-wheels}
311+
rm -f dist/*cp313*
312312
ls -R dist
313313
- uses: pypa/gh-action-pypi-publish@release/v1
314314
with:

0 commit comments

Comments
 (0)