| 111 | * Why don't you fix those {{{OpenGL}}} warnings/errors? Or silence warnings by default? |
| 112 | This is a packaging issue, and those are not our packages. Silencing warnings by default is bad practice, some of those messages may well be legitimate. The developers/packagers should remove those that are not. |
| 113 | Importing a library should not show ugly warnings on screen, especially when the missing libraries it complains about are deprecated and not available for installation. You can see this for yourself with: |
| 114 | {{{ |
| 115 | python -c 'import logging; logging.basicConfig(); \ |
| 116 | logging.root.setLevel(logging.INFO); \ |
| 117 | import OpenGL; from OpenGL.GL import GL_VERSION, GL_EXTENSIONS;' |
| 118 | }}} |