Skip to content

Commit 3269b0c

Browse files
try
1 parent d17d3ab commit 3269b0c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: macos-12
1616
strategy:
1717
matrix:
18-
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10' ]
18+
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10' ]
1919
raylib-platform: ['Desktop', 'SDL']
2020
steps:
2121
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it

raylib/build.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,8 @@ def build_unix():
178178
'-lrt', '-lm', '-ldl', '-lX11', '-lpthread', '-latomic']
179179
if RAYLIB_PLATFORM=="SDL":
180180
extra_link_args += ['-lSDL2']
181+
elif RAYLIB_PLATFORM=="DRM":
182+
extra_link_args += ['-lEGL']
181183
extra_compile_args = ["-Wno-incompatible-pointer-types", "-D_CFFI_NO_LIMITED_API"]
182184
libraries = [] # Not sure why but we put them in extra_link_args instead so *shouldnt* be needed here
183185

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.5.0.0.dev1"
1+
__version__ = "5.5.0.0.dev2"

0 commit comments

Comments
 (0)