Skip to content

Commit

Permalink
CI: Fix publishing wheels 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jnwatson committed Jul 1, 2024
1 parent 9780bb2 commit 4ac135e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,14 +153,14 @@ jobs:
path: dist/lmdb*manylinux*.whl
name: manylinux

test_build_aarch64:
name: "${{ matrix.PYTHON }} aarch64 ${{ matrix.impl }} ${{ matrix.purity }}"
build_aarch64:
name: "build aarch64 ${{ matrix.PYTHON }} aarch64 ${{ matrix.impl }} ${{ matrix.purity }}"
runs-on: ubuntu-20.04
strategy:
matrix:
impl: [cpython, cffi]
purity: [pure, with-pylmdb-mods]
PYTHON: ["cp37-cp37m" , "cp38-cp38" , "cp39-cp39", "cp310-cp310", "cp311-cp311"]
PYTHON: ["cp37-cp37m" , "cp38-cp38" , "cp39-cp39", "cp310-cp310", "cp311-cp311", 'cp312-cp312']
steps:
- uses: actions/checkout@v2
- run: |
Expand Down Expand Up @@ -250,6 +250,8 @@ jobs:
exclude:
- python-version: 'pypy-3.10'
impl: cpython
- python-version: '3.7'
os: macos-latest
- python-version: '3.7'
impl: cffi
- python-version: '3.8'
Expand Down Expand Up @@ -301,8 +303,8 @@ jobs:

with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
skip_existing: true
repository-url: https://test.pypi.org/legacy/
skip-existing: true

- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
Expand Down

0 comments on commit 4ac135e

Please sign in to comment.