Skip to content
Snippets Groups Projects
Unverified Commit 04ce2edd authored by David Robertson's avatar David Robertson Committed by GitHub
Browse files

Fix building wheels on OSX (#14046)

* 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
parent b4ec4f5e
No related branches found
No related tags found
No related merge requests found
...@@ -108,6 +108,10 @@ jobs: ...@@ -108,6 +108,10 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-python@v4 - 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 - name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.9.0 poetry==1.2.0 run: python -m pip install cibuildwheel==2.9.0 poetry==1.2.0
......
Bump actions/setup-python from 2 to 4.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment