Skip to content

Commit 177b2a4

Browse files
committed
Release 0.1.6
1 parent cecdd3f commit 177b2a4

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
> breaking changes may be introduced
1111
> at any time without warning.
1212
13+
## [0.1.6] - 2024-06-03
14+
15+
### Changed
16+
17+
- Don't catch a failure to import `OpenGL` in `moderngl.py`.
18+
1319
## [0.1.5] - 2024-06-03
1420

1521
### Fixed

src/libretro/drivers/video/opengl/moderngl.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,7 @@
2828
VertexArray,
2929
create_context,
3030
)
31-
32-
try:
33-
from OpenGL import GL
34-
except ImportError | AttributeError:
35-
GL = None
31+
from OpenGL import GL
3632

3733
from libretro.api.av import retro_game_geometry, retro_system_av_info
3834
from libretro.api.video import (

0 commit comments

Comments
 (0)