diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d7128ea..7390551 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -49,7 +49,6 @@ jobs: sccache: ${{ !startsWith(github.ref, 'refs/tags/') }} manylinux: auto - name: Build free-threaded wheels - if: ${{ !contains(matrix.platform.runner, 'windows') }} # Excluding because free thread build fails on windows uses: PyO3/maturin-action@v1 with: target: ${{ matrix.platform.target }} @@ -121,12 +120,13 @@ jobs: target: ${{ matrix.platform.target }} args: --release --out dist sccache: ${{ !startsWith(github.ref, 'refs/tags/') }} - - name: Build free-threaded wheels - uses: PyO3/maturin-action@v1 - with: - target: ${{ matrix.platform.target }} - args: --release --out dist -i python3.13t - sccache: ${{ !startsWith(github.ref, 'refs/tags/') }} + # Excluded windows free threaded build, because it doesn't seem to work properly + # - name: Build free-threaded wheels + # uses: PyO3/maturin-action@v1 + # with: + # target: ${{ matrix.platform.target }} + # args: --release --out dist -i python3.13t + # sccache: ${{ !startsWith(github.ref, 'refs/tags/') }} - name: Upload wheels uses: actions/upload-artifact@v4 with: