Skip to content

Commit

Permalink
Try again to get PyPy 3.x versions on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian committed Oct 4, 2023
1 parent e2d7929 commit 537fae2
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 537fae2

Please sign in to comment.