From 02946db86196b25270972fe316bb6414290d079c Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Mon, 28 Oct 2024 17:28:59 +0100 Subject: [PATCH] ci: syntax fix something must have changed github-side --- .github/workflows/wheels.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index c6c934a..b08f2a6 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -20,6 +20,7 @@ jobs: - { cp: "cp310", rel: "3.10" } - { cp: "cp311", rel: "3.11" } - { cp: "cp312", rel: "3.12" } + - { cp: "cp313", rel: "3.13" } steps: - uses: actions/checkout@v4.1.1 @@ -53,7 +54,7 @@ jobs: CIBW_SKIP: "*-win* *-manylinux_i686 pp*" - name: Build wheels (macOS) - if: ${{ runner.os == 'macOS' && runner.python != "3.8" }} + if: ${{ runner.os == 'macOS' && runner.python != '3.8' }} run: python -m cibuildwheel --output-dir wheelhouse env: CIBW_BUILD: ${{ matrix.python.cp }}-${{ matrix.buildplat.sys }}* @@ -64,7 +65,7 @@ jobs: brew install frog - uses: actions/upload-artifact@v4 - if: ${{ ! (runner.os == 'macOS' && runner.python == "3.8") }} + if: ${{ ! (runner.os == 'macOS' && runner.python == '3.8') }} with: name: ${{matrix.python.cp}}-${{matrix.buildplat.sys}}-${{matrix.buildplat.arch}} path: ./wheelhouse/*.whl