Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix building wheels on OSX (#14046)
Browse files Browse the repository at this point in the history
* Fix building wheels on OSX

Follow-up to #13983. I missed a breaking change in setup-python v4.
Serves me right for rushing to cut through the dependabot spam.

* Changelog

* Merge changelog
  • Loading branch information
David Robertson authored Oct 4, 2022
1 parent b4ec4f5 commit 04ce2ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ jobs:
- uses: actions/checkout@v3

- uses: actions/setup-python@v4
with:
# setup-python@v4 doesn't impose a default python version. Need to use 3.x
# here, because `python` on osx points to Python 2.7.
python-version: "3.x"

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.9.0 poetry==1.2.0
Expand Down
1 change: 1 addition & 0 deletions changelog.d/14046.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bump actions/setup-python from 2 to 4.

0 comments on commit 04ce2ed

Please sign in to comment.