diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 1da1cc5c..f2c3e38e 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.1 + uses: PyO3/maturin-action@v1.42.2 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.1 + uses: PyO3/maturin-action@v1.42.2 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.1 + uses: PyO3/maturin-action@v1.42.2 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.1 + uses: PyO3/maturin-action@v1.42.2 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.1 + uses: PyO3/maturin-action@v1.42.2 env: MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }} with: