Skip to content

Commit

Permalink
build(deps): bump PyO3/maturin-action from 1.42.2 to 1.43.0 (#214)
Browse files Browse the repository at this point in the history
Bumps [PyO3/maturin-action](https://github.com/pyo3/maturin-action) from 1.42.2 to 1.43.0.
- [Release notes](https://github.com/pyo3/maturin-action/releases)
- [Commits](PyO3/maturin-action@v1.42.2...v1.43.0)

---
updated-dependencies:
- dependency-name: PyO3/maturin-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored May 14, 2024
1 parent 8225ad6 commit 8af8539
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,26 +53,26 @@ jobs:
run: python3 prepare_build.py populate
- name: Create sdist
if: ${{ matrix.type == 'sdist' }}
uses: PyO3/maturin-action@v1.42.2
uses: PyO3/maturin-action@v1.43.0
with:
command: sdist
args: -o dist -m py/Cargo.toml
- name: Build manylinux wheels
if: ${{ matrix.type == 'wheel' && matrix.os == 'ubuntu-latest' }}
uses: PyO3/maturin-action@v1.42.2
uses: PyO3/maturin-action@v1.43.0
with:
manylinux: auto
command: build
args: -i ${{ matrix.python-version }} --release -o dist -m py/Cargo.toml
- name: Build Windows wheels
if: ${{ matrix.type == 'wheel' && matrix.os == 'windows-latest' }}
uses: PyO3/maturin-action@v1.42.2
uses: PyO3/maturin-action@v1.43.0
with:
command: build
args: --release -o dist -m py/Cargo.toml
- name: Build MacOS wheels
if: ${{ matrix.type == 'wheel' && matrix.os == 'macos-latest' }}
uses: PyO3/maturin-action@v1.42.2
uses: PyO3/maturin-action@v1.43.0
with:
command: build
args: --release -o dist --universal2 -m py/Cargo.toml
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
*.whl
*.tar.gz
- name: Publish to PyPI
uses: PyO3/maturin-action@v1.42.2
uses: PyO3/maturin-action@v1.43.0
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
Expand Down

0 comments on commit 8af8539

Please sign in to comment.