Skip to content

Commit

Permalink
Publish win-py3.12 wheels, don't publish py3.7 (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart authored Dec 9, 2023
1 parent b3de97b commit b3f660d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: x86_64
args: --release --out dist --sdist -i 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9
args: --release --out dist --sdist -i 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9
- name: Test built wheel - x86_64
run: |
pip install pycrdt --no-index --find-links dist --force-reinstall
Expand All @@ -52,9 +52,9 @@ jobs:
matrix:
platform:
- target: x64
interpreter: 3.7 3.8 3.9 3.10 3.11
interpreter: 3.8 3.9 3.10 3.11 3.12
- target: x86
interpreter: 3.7 3.8 3.9 3.10 3.11
interpreter: 3.8 3.9 3.10 3.11 3.12
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
rust-toolchain: stable
target: ${{ matrix.target }}
manylinux: auto
args: --release --out dist -i 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9
args: --release --out dist -i 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9
- name: Test built wheel
if: matrix.target == 'x86_64'
run: |
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
rust-toolchain: stable
target: ${{ matrix.target }}
manylinux: auto
args: --release --out dist -i 3.7 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9
args: --release --out dist -i 3.8 3.9 3.10 3.11 3.12 pypy3.8 pypy3.9

- uses: uraimo/[email protected]
if: matrix.target != 'ppc64'
Expand Down

0 comments on commit b3f660d

Please sign in to comment.