Adjust the version check to skip pre-building skeletons for Python 3.6 on Big Sur

GitOrigin-RevId: 5ed06b98b84f8a717d67c411f934e7a6b7c312e7
This commit is contained in:
Mikhail Golubev
2022-06-15 17:59:10 +03:00
committed by intellij-monorepo-bot
parent 627866a9b3
commit 110f9fb043

View File

@@ -30,7 +30,7 @@ envs {
shouldUseZipsFromRepository = Os.isFamily(Os.FAMILY_WINDOWS)
}
if (!(Os.isFamily(Os.FAMILY_MAC) && Os.isVersion("10.16"))) {
if (!(Os.isFamily(Os.FAMILY_MAC) && (Os.isVersion("10.16") || Os.isVersion("11.6")))) {
// https://github.com/pyenv/pyenv/issues/1737#issuecomment-794592631
python "python36", "3.6.8"
}