8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python 3.12 removed distutils and with that, "LooseVersion" no longer exists.
pyglet integration compares pyglet version to determine which pipeline it should use::
if LooseVersion(pyglet.version) < LooseVersion('2.0'): return PygletFixedPipelineRenderer(window, attach_callbacks) else: return PygletProgrammablePipelineRenderer(window, attach_callbacks)
This will no longer work. Suggested patch would be to remove the import, and simplify the check to something like::
if int(pyglet.version.split('.')[0]) < 2: ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
python 3.12 removed distutils and with that, "LooseVersion" no longer exists.
pyglet integration compares pyglet version to determine which pipeline it should use::
This will no longer work. Suggested patch would be to remove the import, and simplify the check to something like::
The text was updated successfully, but these errors were encountered: