diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 9a1c97d..a43dfd0 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -143,22 +143,18 @@ jobs: runs-on: windows-latest strategy: matrix: - include: - - target: x86_64 - python-architecture: x64 - - target: i686 - python-architecture: x86 + target: [x64, x86] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: python-version: "3.x" - architecture: ${{ matrix.python-architecture }} + architecture: ${{ matrix.target }} - name: Build wheels uses: PyO3/maturin-action@v1 with: target: ${{ matrix.target }} - args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12' + args: --release --out dist --interpreter '3.8 3.9 3.10 3.11' - name: Upload wheels uses: actions/upload-artifact@v3 with: