-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Select Xcode version for python packaging CI
- Loading branch information
1 parent
decdc19
commit a70f43e
Showing
2 changed files
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,6 +84,11 @@ jobs: | |
pip install setuptools | ||
python -c 'from distutils import util; print("distutil.util.get_platform:", util.get_platform())' | ||
python -c 'import platform; print("platform.platform()", platform.platform())' | ||
- name: Select XCode version | ||
if: startsWith(matrix.os, 'macos') | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: '15.4' | ||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
with: | ||
|