This is an automated email from the ASF dual-hosted git repository. jmalkin pushed a commit to branch 5.0.x-patch in repository https://gitbox.apache.org/repos/asf/datasketches-python.git
commit c4ba296de73fdadc6e94572289d031633c259554 Author: Jon Malkin <[email protected]> AuthorDate: Wed Feb 7 19:43:33 2024 -0800 Bump qemu version, tidy up naming --- .github/workflows/build_wheels.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 96e8414..c7453e2 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -6,7 +6,7 @@ on: env: BUILD_TYPE: Release MIN_CIBUILDWHEEL_VERSION: 2.16.2 - PYTHON_VERSION: 3.11 + PYTHON_VERSION: 3.x jobs: build_sdist: @@ -75,14 +75,14 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Set up Python ${{ env.PYTHON_VERSION }} + - name: Set up Python uses: actions/setup-python@v5 with: python-version: ${{ env.PYTHON_VERSION }} - name: Set up QEMU for linux/arm64 builds if: runner.os == 'Linux' && matrix.config.use-qemu == true - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 with: platforms: arm64 @@ -98,13 +98,13 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: wheel-${{ matrix.config.os }}-${{ matrix.config.cibw-arch }} + name: wheels-${{ matrix.config.os }}-${{ matrix.config.cibw-arch }} path: ./dist/*.whl compression-level: 0 # contents are already compressed - aggregate_artifact: - name: Aggregate artifact + aggregate_artifacts: + name: Aggregate artifacts runs-on: ubuntu-latest needs: [build_sdist, build_wheels] steps: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
