Skip to content

Commit be0d90c

Browse files
committed
Bump up MACOSX_DEPLOYMENT_TARGET to 10.7 for conda.
As of conda-build 2.0.0 the Anaconda packages are built with MACOSX_DEPLOYMENT_TARGET=10.7.
1 parent ba4c3f2 commit be0d90c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: .travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ install:
109109

110110
# Mac OS X must use the same deployment target as conda-build.
111111
- if $MYUSEMC && [[ "${TRAVIS_OS_NAME}" == osx ]]; then
112-
export MACOSX_DEPLOYMENT_TARGET=10.6;
112+
export MACOSX_DEPLOYMENT_TARGET=10.7;
113113
export DYLD_FALLBACK_LIBRARY_PATH="${MYLIB}";
114114
fi
115115

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,10 @@ c++ testlib.cpp -I$P/include -L$P/lib -Wl,-rpath,$P/lib -ldiffpy
124124
```
125125

126126
On Mac OS X the libdiffpy package is built for OS X version
127-
10.6 which may be incompatible with codes emitted on newer OS.
128-
To fix this add `-mmacosx-version-min=10.6` option to the
127+
10.7 which may be incompatible with codes emitted on newer OS.
128+
To fix this add `-mmacosx-version-min=10.7` option to the
129129
c++ compiler or set it with an environment variable as
130-
`export MACOSX_DEPLOYMENT_TARGET=10.6`.
130+
`export MACOSX_DEPLOYMENT_TARGET=10.7`.
131131

132132

133133
## DEVELOPMENT

0 commit comments

Comments
 (0)