@@ -16,14 +16,14 @@ jobs:
1616 runs-on : ubuntu-latest
1717 strategy :
1818 matrix :
19- python-version : ['3.8', '3.9', '3.10', '3.11', '3.12']
2019 target : [x86_64, x86, aarch64]
21- name : Ubuntu, ${{ matrix.target }}, Python ${{ matrix.python-version }}
20+ name : Ubuntu, ${{ matrix.target }}
2221 steps :
2322 - uses : actions/checkout@v4
2423 - uses : actions/setup-python@v6
2524 with :
26- python-version : ${{ matrix.python-version }}
25+ python-version : 3.x
26+ allow-prereleases : true
2727 - name : Build wheels
2828 uses : PyO3/maturin-action@v1
2929 with :
@@ -34,22 +34,22 @@ jobs:
3434 - name : Upload wheels
3535 uses : actions/upload-artifact@v4
3636 with :
37- name : wheels-ubuntu-${{ matrix.target }}-${{ matrix.python-version }}
37+ name : wheels-ubuntu-${{ matrix.target }}
3838 path : dist
3939
4040 windows :
4141 runs-on : windows-latest
4242 strategy :
4343 matrix :
44- python-version : ['3.8', '3.9', '3.10', '3.11', '3.12']
4544 target : [x64, x86]
46- name : Windows, ${{ matrix.target }}, Python ${{ matrix.python-version }}
45+ name : Windows, ${{ matrix.target }}
4746 steps :
4847 - uses : actions/checkout@v4
4948 - uses : actions/setup-python@v6
5049 with :
51- python-version : ${{ matrix.python-version }}
50+ python-version : 3.x
5251 architecture : ${{ matrix.target }}
52+ allow-prereleases : true
5353 - name : Build wheels
5454 uses : PyO3/maturin-action@v1
5555 with :
@@ -59,21 +59,21 @@ jobs:
5959 - name : Upload wheels
6060 uses : actions/upload-artifact@v4
6161 with :
62- name : wheels-windows-${{ matrix.target }}-${{ matrix.python-version }}
62+ name : wheels-windows-${{ matrix.target }}
6363 path : dist
6464
6565 macos :
6666 runs-on : macos-latest
6767 strategy :
6868 matrix :
69- python-version : ['3.8', '3.9', '3.10', '3.11', '3.12']
7069 target : [x86_64, aarch64]
71- name : macOS, ${{ matrix.target }}, Python ${{ matrix.python-version }}
70+ name : macOS, ${{ matrix.target }}
7271 steps :
7372 - uses : actions/checkout@v4
7473 - uses : actions/setup-python@v6
7574 with :
76- python-version : ${{ matrix.python-version }}
75+ python-version : 3.x
76+ allow-prereleases : true
7777 - name : Build wheels
7878 uses : PyO3/maturin-action@v1
7979 with :
8383 - name : Upload wheels
8484 uses : actions/upload-artifact@v4
8585 with :
86- name : wheels-macos-${{ matrix.target }}-${{ matrix.python-version }}
86+ name : wheels-macos-${{ matrix.target }}
8787 path : dist
8888
8989 sdist :
0 commit comments