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 5592101b9d89225b51f419c3ebfd1c4d6bad2106 Author: Jon Malkin <[email protected]> AuthorDate: Wed Feb 7 19:06:07 2024 -0800 use PYTHON_VERSION variable consistently --- .github/workflows/build_wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 2350e94..96e8414 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -75,10 +75,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Set up Python 3.x + - name: Set up Python ${{ env.PYTHON_VERSION }} uses: actions/setup-python@v5 with: - python-version: '3.x' + python-version: ${{ env.PYTHON_VERSION }} - name: Set up QEMU for linux/arm64 builds if: runner.os == 'Linux' && matrix.config.use-qemu == true --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
