Skip to content

Commit c6a0436

Browse files
committed
ci: update CI/CD to include Python 3.13
1 parent 117ad01 commit c6a0436

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/publish_to_pypi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
- name: Build wheels
2222
uses: pypa/cibuildwheel@v2.16.2
2323
env:
24-
# Skip CPython 3.6, 3.7, 3.8, 3.12, PyPy, 32-bit, and musl
25-
CIBW_SKIP: "cp36-* cp37-* cp38-* cp312-* pp* *i686 *musllinux*"
24+
# Skip CPython 3.6, 3.7, 3.8, 3.12, 3.13, PyPy, 32-bit, and musl
25+
CIBW_SKIP: "cp36-* cp37-* cp38-* cp312-* cp313-* pp* *i686 *musllinux*"
2626

2727
- uses: actions/upload-artifact@v3
2828
with:

.github/workflows/unit-tests-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macOS-latest]
20-
python-version: ['3.9', '3.10', '3.11', '3.12']
20+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2121
# mpi: [ 'mpich', 'openmpi', 'intelmpi']
2222
# mpi: ['openmpi']
2323

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ envlist =
2424
py310
2525
py311
2626
py312
27+
py313
2728

2829
[testenv]
2930
allowlist_externals =

0 commit comments

Comments
 (0)