File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 12
12
#
13
13
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
14
14
15
- from ._raylib_cffi import ffi , lib as rl
15
+ import sys
16
+ try :
17
+ from ._raylib_cffi import ffi , lib as rl
18
+ except ModuleNotFoundError :
19
+ print ("\n *** ERROR LOADING NATIVE CODE ***\n " )
20
+ print ("See https://github.com/electronstudio/raylib-python-cffi/issues/142\n " , file = sys .stderr )
21
+ print ("Your Python is: " + str (sys .implementation )+ "\n " , file = sys .stderr )
22
+ raise
16
23
from raylib ._raylib_cffi .lib import *
17
24
from raylib .colors import *
18
25
from raylib .defines import *
19
26
import cffi
20
- import sys
21
27
from .version import __version__
22
28
23
29
print ("RAYLIB STATIC " + __version__ + " LOADED" , file = sys .stderr )
Original file line number Diff line number Diff line change 1
- __version__ = "5.0.0.4.dev1 "
1
+ __version__ = "5.0.0.4"
You can’t perform that action at this time.
0 commit comments