diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8b0c22d..7094a97 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -132,13 +132,22 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: - python-version: "3.x" + python-version: | + 3.8 + 3.9 + 3.10 + 3.11 + 3.12 + pypy3.8 + pypy3.9 + pypy3.10 + allow-prereleases: true 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 pypy3.9 pypy3.10' + args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9 pypy3.10' - name: Upload wheels uses: actions/upload-artifact@v3 with: