Skip to content

Commit 4a3c01b

Browse files
authored
Merge pull request #295 from ap--/update-ci
Upgrade GitHub Actions and Python versions
2 parents 2f9598c + cee7ab3 commit 4a3c01b

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

.github/workflows/run_test_build_deploy.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
strategy:
1717
max-parallel: 5
1818
matrix:
19-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
19+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0
2525
- name: Set up Python ${{ matrix.python-version }}
@@ -42,7 +42,7 @@ jobs:
4242
needs: [tests]
4343
runs-on: ubuntu-latest
4444
steps:
45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@v5
4646
with:
4747
fetch-depth: 0
4848
- name: Set up Python 3.9
@@ -59,7 +59,7 @@ jobs:
5959
run: python -m pip install build --user
6060
- name: Build the source tarball
6161
run: python -m build --sdist .
62-
- uses: actions/upload-artifact@v4
62+
- uses: actions/upload-artifact@v5
6363
with:
6464
name: sdist
6565
path: ./dist
@@ -83,24 +83,24 @@ jobs:
8383
- os: 'macOS-latest'
8484
arch: 'arm64'
8585
steps:
86-
- uses: actions/checkout@v4
86+
- uses: actions/checkout@v5
8787
with:
8888
fetch-depth: 0
8989

9090
- name: Set up QEMU
9191
if: ${{ runner.os == 'Linux' && matrix.arch != 'x86_64' }}
92-
uses: docker/setup-qemu-action@v3.3.0
92+
uses: docker/setup-qemu-action@v3.6.0
9393
with:
9494
platforms: all
9595

9696
- name: Build wheels
97-
uses: pypa/cibuildwheel@v2.22.0
97+
uses: pypa/cibuildwheel@v3.2.1
9898
env:
9999
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
100100
CIBW_ARCHS_MACOS: ${{ matrix.arch }}
101101
SEABREEZE_DISABLE_FH4: "yes"
102102

103-
- uses: actions/upload-artifact@v4
103+
- uses: actions/upload-artifact@v5
104104
with:
105105
name: wheels-${{ runner.os }}-${{ matrix.arch }}
106106
path: ./wheelhouse/*.whl
@@ -111,11 +111,11 @@ jobs:
111111
runs-on: ubuntu-latest
112112
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
113113
steps:
114-
- uses: actions/download-artifact@v4
114+
- uses: actions/download-artifact@v5
115115
with:
116116
name: sdist
117117
path: ./dist
118-
- uses: actions/download-artifact@v4
118+
- uses: actions/download-artifact@v5
119119
with:
120120
pattern: wheels-*
121121
merge-multiple: true

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,5 +237,6 @@ def win_spawn(_, cmd, *args, **kwargs):
237237
"Programming Language :: Python :: 3.11",
238238
"Programming Language :: Python :: 3.12",
239239
"Programming Language :: Python :: 3.13",
240+
"Programming Language :: Python :: 3.14",
240241
],
241242
)

0 commit comments

Comments
 (0)