Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
electronstudio committed Oct 16, 2024
1 parent d17d3ab commit 3269b0c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: macos-12
strategy:
matrix:
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10' ]
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10' ]
raylib-platform: ['Desktop', 'SDL']
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down
2 changes: 2 additions & 0 deletions raylib/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ def build_unix():
'-lrt', '-lm', '-ldl', '-lX11', '-lpthread', '-latomic']
if RAYLIB_PLATFORM=="SDL":
extra_link_args += ['-lSDL2']
elif RAYLIB_PLATFORM=="DRM":
extra_link_args += ['-lEGL']
extra_compile_args = ["-Wno-incompatible-pointer-types", "-D_CFFI_NO_LIMITED_API"]
libraries = [] # Not sure why but we put them in extra_link_args instead so *shouldnt* be needed here

Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.5.0.0.dev1"
__version__ = "5.5.0.0.dev2"

0 comments on commit 3269b0c

Please sign in to comment.