@@ -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 }}
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
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
0 commit comments