We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09fecca commit bfd9ebaCopy full SHA for bfd9eba
config.sh
@@ -10,6 +10,14 @@ function build_wheel {
10
build_bdist_wheel $@
11
}
12
13
+function bdist_wheel_cmd {
14
+ # copied from multibuild's common_utils.sh
15
+ # add osx deployment target so it doesnt default to 10.6
16
+ local abs_wheelhouse=$1
17
+ python setup.py bdist_wheel -- -DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.7
18
+ cp dist/*.whl $abs_wheelhouse
19
+}
20
+
21
if [ -n "$IS_OSX" ]; then
22
echo " > OSX environment "
23
else
0 commit comments