CI - Only support macOS 10.11+

This commit is contained in:
Anthony MOI
2020-07-17 11:25:45 -04:00
parent 212747f7fd
commit d3e1c55fb7
3 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ on:
jobs:
rust_publish:
env:
MACOSX_DEPLOYMENT_TARGET: 10.10
MACOSX_DEPLOYMENT_TARGET: 10.11
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]

View File

@ -70,7 +70,7 @@ jobs:
create_wheels_others_64bit:
name: Create wheels for other OSes
env:
MACOSX_DEPLOYMENT_TARGET: 10.10
MACOSX_DEPLOYMENT_TARGET: 10.11
runs-on: ${{ matrix.os }}
strategy:
matrix:
@ -104,7 +104,7 @@ jobs:
- name: Rename wheels
shell: bash
working-directory: ./bindings/python/dist
run: for file in *.whl ; do mv $file ${file//macosx_10_15/macosx_10_10} ; done
run: for file in *.whl ; do mv $file ${file//macosx_10_15/macosx_10_11} ; done
- name: Upload wheels
shell: bash

View File

@ -10,7 +10,7 @@ jobs:
build:
runs-on: ${{ matrix.os }}
env:
MACOSX_DEPLOYMENT_TARGET: 10.10
MACOSX_DEPLOYMENT_TARGET: 10.11
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]