Block pyopenGL tests on more macOS platforms

When running on macOS Big Sur, pyopenGL is unable to find the bindings

Previously this was assumed that it would be fixed in later versions
of Python 3.8, but that has not happened.
This commit is contained in:
Ogi Moore 2021-04-15 22:08:50 -07:00
parent 435c54d20b
commit e735d2d9b8
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ installedFrontends = sorted([
darwin_opengl_broken = (platform.system() == "Darwin" and
tuple(map(int, platform.mac_ver()[0].split("."))) >= (10, 16) and
(sys.version_info <= (3, 8, 7) or (3, 9) <= sys.version_info < (3, 9, 1)))
sys.version_info < (3, 9, 1))
darwin_opengl_reason = ("pyopenGL cannot find openGL library on big sur: "
"https://github.com/python/cpython/pull/21241")