Skip python 3.6 during building binary stubs for macos big sur

GitOrigin-RevId: dc51a1b16f7a73b9b7e372e34a515c54e5f73bc0
This commit is contained in:
Semyon Proshev
2021-09-23 15:41:53 +03:00
committed by intellij-monorepo-bot
parent 4ec636f22f
commit 968a69393c

View File

@@ -31,7 +31,12 @@ envs {
}
python "python27", "2.7.18"
python "python36", "3.6.8"
if (!(Os.isFamily(Os.FAMILY_MAC) && Os.isVersion("10.16"))) {
// https://github.com/pyenv/pyenv/issues/1737#issuecomment-794592631
python "python36", "3.6.8"
}
python "python37", "3.7.9"
python "python38", "3.8.10"
python "python39", "3.9.5"