Skip to content

Commit 63cfdaf

Browse files
authored
Fix python release breakages by set MB_PYTHON_OSX_VER (protocolbuffers#7038)
1 parent 03ba4ac commit 63cfdaf

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

kokoro/release/python/macos/build_artifacts.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,13 @@ build_artifact_version() {
5050
mv wheelhouse/* $ARTIFACT_DIR
5151
}
5252

53+
export MB_PYTHON_OSX_VER=10.9
5354
build_artifact_version 2.7
54-
build_artifact_version 3.5
5555
build_artifact_version 3.6
5656
build_artifact_version 3.7
5757
build_artifact_version 3.8
58+
59+
# python OSX10.9 does not have python 3.5
60+
export MB_PYTHON_OSX_VER=10.6
61+
build_artifact_version 3.5
62+

0 commit comments

Comments
 (0)