Skip to content

Commit

Permalink
Fix release workflow for latest MacOS runner
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Jun 3, 2024
1 parent 9ecaac8 commit 7094f31
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ jobs:
manylinux: '2_28'

- name: Test wheel
if: matrix.arch == 'x86_64'
# Only test wheels that match the runner architecture for now
if: (matrix.arch == 'x86_64' && matrix.os != 'macos-latest') || (matrix.arch == 'aarch64' && matrix.os == 'macos-latest')
run: |
pip install dist/*.whl --force-reinstall
polars --version
Expand Down

0 comments on commit 7094f31

Please sign in to comment.