From b431b70745daf95464d5a92189bcaac87c494c37 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 18:28:12 +0000 Subject: [PATCH] build(deps): bump PyO3/maturin-action from 1.44.0 to 1.45.0 Bumps [PyO3/maturin-action](https://github.com/pyo3/maturin-action) from 1.44.0 to 1.45.0. - [Release notes](https://github.com/pyo3/maturin-action/releases) - [Commits](https://github.com/pyo3/maturin-action/compare/v1.44.0...v1.45.0) --- updated-dependencies: - dependency-name: PyO3/maturin-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .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 47a45668..355229a4 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -55,13 +55,13 @@ jobs: run: python3 prepare_build.py populate - name: Create sdist if: ${{ matrix.type == 'sdist' }} - uses: PyO3/maturin-action@v1.44.0 + uses: PyO3/maturin-action@v1.45.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.44.0 + uses: PyO3/maturin-action@v1.45.0 with: manylinux: auto command: build @@ -74,13 +74,13 @@ jobs: unzip protoc-$PROTOC_VERSION-linux-x86_64.zip -d /usr/local - name: Build Windows wheels if: ${{ matrix.type == 'wheel' && matrix.os == 'windows-latest' }} - uses: PyO3/maturin-action@v1.44.0 + uses: PyO3/maturin-action@v1.45.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.44.0 + uses: PyO3/maturin-action@v1.45.0 with: command: build args: --release -o dist --universal2 -m py/Cargo.toml @@ -119,7 +119,7 @@ jobs: *.whl *.tar.gz - name: Publish to PyPI - uses: PyO3/maturin-action@v1.44.0 + uses: PyO3/maturin-action@v1.45.0 env: MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }} with: