Skip to content

Commit 02946db

Browse files
committed
ci: syntax fix
something must have changed github-side
1 parent 6b56ff6 commit 02946db

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/wheels.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- { cp: "cp310", rel: "3.10" }
2121
- { cp: "cp311", rel: "3.11" }
2222
- { cp: "cp312", rel: "3.12" }
23+
- { cp: "cp313", rel: "3.13" }
2324

2425
steps:
2526
- uses: actions/[email protected]
@@ -53,7 +54,7 @@ jobs:
5354
CIBW_SKIP: "*-win* *-manylinux_i686 pp*"
5455

5556
- name: Build wheels (macOS)
56-
if: ${{ runner.os == 'macOS' && runner.python != "3.8" }}
57+
if: ${{ runner.os == 'macOS' && runner.python != '3.8' }}
5758
run: python -m cibuildwheel --output-dir wheelhouse
5859
env:
5960
CIBW_BUILD: ${{ matrix.python.cp }}-${{ matrix.buildplat.sys }}*
@@ -64,7 +65,7 @@ jobs:
6465
brew install frog
6566
6667
- uses: actions/upload-artifact@v4
67-
if: ${{ ! (runner.os == 'macOS' && runner.python == "3.8") }}
68+
if: ${{ ! (runner.os == 'macOS' && runner.python == '3.8') }}
6869
with:
6970
name: ${{matrix.python.cp}}-${{matrix.buildplat.sys}}-${{matrix.buildplat.arch}}
7071
path: ./wheelhouse/*.whl

0 commit comments

Comments
 (0)