Skip to content

Commit c9d18b5

Browse files
author
Jeff Whitaker
committed
add PLAT="universal2" to python 3.10 on macosx_latest
1 parent f0fdd5e commit c9d18b5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build-wheels.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ jobs:
2424

2525
fail-fast: false
2626
matrix:
27-
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10" ]
27+
#python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10" ]
28+
python-version: [ "3.9", "3.10" ]
2829
os: [ubuntu-latest, macos-latest]
2930
platform: [x64, x32]
3031
exclude:
@@ -80,6 +81,7 @@ jobs:
8081
if [ "macos-latest" == "${{ matrix.os }}" ]; then echo "TRAVIS_OS_NAME=osx" >> $GITHUB_ENV; else echo "TRAVIS_OS_NAME=${{ matrix.os }}" >> $GITHUB_ENV; fi
8182
if [ "schedule" == "${{ github.event_name }}" ]; then echo "TRAVIS_EVENT_TYPE=cron" >> $GITHUB_ENV; else echo "TRAVIS_EVENT_TYPE=${{ github.event_name }}" >> $GITHUB_ENV; fi
8283
if [ "schedule" == "${{ github.event_name }}" ]; then echo "BUILD_COMMIT=master" >> $GITHUB_ENV; else echo "BUILD_COMMIT=$BUILD_COMMIT" >> $GITHUB_ENV; fi
84+
if [ "macos-latest" == "${{ matrix.os }}" ] && [ "$MB_PYTHON_VERSION" == "3.10" ]; then echo "PLAT=universal2" >> $GITHUB_ENV; fi
8385
8486
- name: Setup Special Environment variables for Linux AArch64
8587
if: ${{ matrix.platform == 'aarch64' }}

0 commit comments

Comments
 (0)