raylib 5.5.0.0.dev2__cp311-cp311-manylinux2014_x86_64.whl → 5.5.0.1__cp311-cp311-manylinux2014_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of raylib might be problematic. Click here for more details.
- pyray/__init__.py +3 -4
- pyray/__init__.pyi +3941 -3793
- pyray/py.typed +0 -0
- raylib/__init__.py +8 -2
- raylib/__init__.pyi +1132 -844
- raylib/_raylib_cffi.cpython-311-x86_64-linux-gnu.so +0 -0
- raylib/build.py +4 -2
- raylib/defines.py +1 -7
- raylib/enums.py +0 -1
- raylib/py.typed +0 -0
- raylib/raylib.h.modified +55 -46
- raylib/raymath.h.modified +4 -2
- raylib/rlgl.h.modified +7 -7
- raylib/version.py +1 -1
- {raylib-5.5.0.0.dev2.dist-info → raylib-5.5.0.1.dist-info}/METADATA +79 -40
- raylib-5.5.0.1.dist-info/RECORD +23 -0
- {raylib-5.5.0.0.dev2.dist-info → raylib-5.5.0.1.dist-info}/WHEEL +1 -1
- raylib-5.5.0.0.dev2.dist-info/RECORD +0 -21
- {raylib-5.5.0.0.dev2.dist-info → raylib-5.5.0.1.dist-info}/LICENSE +0 -0
- {raylib-5.5.0.0.dev2.dist-info → raylib-5.5.0.1.dist-info}/top_level.txt +0 -0
pyray/py.typed
ADDED
|
File without changes
|
raylib/__init__.py
CHANGED
|
@@ -12,12 +12,18 @@
|
|
|
12
12
|
#
|
|
13
13
|
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
14
14
|
|
|
15
|
-
|
|
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)
|