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:
parent
435c54d20b
commit
e735d2d9b8
@ -58,7 +58,7 @@ installedFrontends = sorted([
|
|||||||
|
|
||||||
darwin_opengl_broken = (platform.system() == "Darwin" and
|
darwin_opengl_broken = (platform.system() == "Darwin" and
|
||||||
tuple(map(int, platform.mac_ver()[0].split("."))) >= (10, 16) 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: "
|
darwin_opengl_reason = ("pyopenGL cannot find openGL library on big sur: "
|
||||||
"https://github.com/python/cpython/pull/21241")
|
"https://github.com/python/cpython/pull/21241")
|
||||||
|
Loading…
Reference in New Issue
Block a user