Skip to content
This repository was archived by the owner on Jun 7, 2020. It is now read-only.

Commit 85264f5

Browse files
committed
Fix OpenGL on debian based OS with nVidia #60
1 parent 4eb6448 commit 85264f5

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

ide.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
#!/usr/bin/env python3
22
# coding=utf-8
33

4+
import sys
5+
6+
if 'linux' in sys.platform.lower():
7+
# noinspection PyUnresolvedReferences
8+
from OpenGL import GL # noqa
9+
410
from ifj2017.ide.main import main
511

612
if __name__ == '__main__':

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
def setup():
3333
core.setup(
3434
name='IFJcode17-toolkit',
35-
version='1.4.2',
35+
version='1.4.3',
3636
license='GNU GENERAL PUBLIC LICENSE Version 3',
3737
description='Toolkit for IFJ17 language compiler (as project at FIT BUT in Brno) with '
3838
'interactive debugger and automatic tests.',

0 commit comments

Comments
 (0)