Skip to content

Commit 3ace365

Browse files
committed
Update .github/workflows for Python 3.13
1 parent 492b54e commit 3ace365

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Diff for: .github/workflows/ci-linux.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: [3.9, "3.10", "3.11", "3.12"]
12+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1313

1414
steps:
1515

@@ -21,12 +21,12 @@ jobs:
2121
libopenblas-dev
2222
2323
- name: Checkout
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
with:
2626
fetch-depth: 0
2727

2828
- name: Set up Python ${{ matrix.python-version }}
29-
uses: actions/setup-python@v4
29+
uses: actions/setup-python@v5
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232

Diff for: .github/workflows/ci-pixi.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
os: ["windows-2022", "macos-latest"]
14-
python-version: ["3.9", "3.10", "3.11", "3.12"]
14+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1515
defaults:
1616
run:
1717
shell: bash -l {0}
1818
steps:
1919
- uses: actions/checkout@v3
2020
- uses: prefix-dev/[email protected]
2121
with:
22-
pixi-version: v0.26.1
22+
pixi-version: v0.33.0
2323
cache: false
2424
- name: Install
2525
run: |

Diff for: .github/workflows/wheels.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
with:
2727
python-version: 3.x
2828
- name: Build wheels
29-
uses: pypa/cibuildwheel@v2.19.2
29+
uses: pypa/cibuildwheel@v2.21.3
3030
env:
31-
CIBW_SKIP: pp* cp36-* cp37-* cp38-* *-musllinux*
31+
CIBW_SKIP: pp* cp36-* cp37-* cp38-* cp39-* *-musllinux*
3232
CIBW_ARCHS: ${{ matrix.architecture }}
3333
- uses: actions/upload-artifact@v4
3434
with:
@@ -49,9 +49,9 @@ jobs:
4949
with:
5050
python-version: 3.x
5151
- name: Build wheels
52-
uses: pypa/cibuildwheel@v2.19.2
52+
uses: pypa/cibuildwheel@v2.21.3
5353
env:
54-
CIBW_SKIP: pp* cp36-* cp37-* cp38-* *-musllinux*
54+
CIBW_SKIP: pp* cp36-* cp37-* cp38-* cp39-* *-musllinux*
5555
CIBW_ARCHS: ${{ matrix.architecture }}
5656
# increase pip debugging output
5757
# CIBW_BUILD_VERBOSITY: 2
@@ -79,9 +79,9 @@ jobs:
7979
python-version: 3.x
8080

8181
- name: Build wheels
82-
uses: pypa/cibuildwheel@v2.19.2
82+
uses: pypa/cibuildwheel@v2.21.3
8383
env:
84-
CIBW_SKIP: pp* cp36-* cp37-* cp38-* *-musllinux*
84+
CIBW_SKIP: pp* cp36-* cp37-* cp38-* cp39-* *-musllinux*
8585
CIBW_ARCHS: aarch64
8686
- uses: actions/upload-artifact@v4
8787
with:
@@ -111,7 +111,7 @@ jobs:
111111
name: sdist
112112
- uses: actions/setup-python@v5
113113
with:
114-
python-version: 3.12
114+
python-version: 3.13
115115
- run: |
116116
pip install pip -U
117117
ls

0 commit comments

Comments
 (0)