From 8af853920dbfb684a6cc5bbaef279f3e3c9ded4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 18:46:25 -0700 Subject: [PATCH] build(deps): bump PyO3/maturin-action from 1.42.2 to 1.43.0 (#214) 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](https://github.com/pyo3/maturin-action/compare/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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/python.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index f2c3e38e..340e4f42 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -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 @@ -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: