Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 3031731

Browse files
committed
Update Mac version from 10.9 to 10.14.
This is needed because of changes in the azure provided Python 3.8 for Mac.
1 parent 22584fe commit 3031731

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

azure/posix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
# Platform variables used in multibuild scripts
5050
if [ `uname` == 'Darwin' ]; then
5151
echo "##vso[task.setvariable variable=TRAVIS_OS_NAME]osx"
52-
echo "##vso[task.setvariable variable=MACOSX_DEPLOYMENT_TARGET]10.9"
52+
echo "##vso[task.setvariable variable=MACOSX_DEPLOYMENT_TARGET]10.14"
5353
else
5454
echo "##vso[task.setvariable variable=TRAVIS_OS_NAME]linux"
5555
fi

azure/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- task: BatchScript@1
2424
inputs:
2525
filename: azure/set_vs_toolchain.cmd
26-
arguments: $(BITS) 2019 14.16
26+
arguments: $(BITS) 2019 "14.16"
2727
modifyEnvironment: True
2828
displayName: Set VS toolchain version
2929

env_vars.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
# Environment variables for build
3-
MACOSX_DEPLOYMENT_TARGET=10.9
3+
MACOSX_DEPLOYMENT_TARGET=10.14
44
CFLAGS="-std=c99 -fno-strict-aliasing"
55
# Macos's linker doesn't support stripping symbols
66
if [ "$(uname)" != "Darwin" ]; then

env_vars_32.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# The important difference from the 64-bit build is `-msse2` to
44
# compile sse loops for ufuncs.
55
set -x
6-
MACOSX_DEPLOYMENT_TARGET=10.9
6+
MACOSX_DEPLOYMENT_TARGET=10.14
77

88
# Fails test_umath.TestAVXUfuncs with reciprocal on Azure
99
# CFLAGS="-msse2 -std=c99 -fno-strict-aliasing"

0 commit comments

Comments
 (0)