From 3269b0cb9b36f1aa22457a7211e15a2f9aaa84b3 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Wed, 16 Oct 2024 02:59:35 +0100 Subject: [PATCH] try --- .github/workflows/build.yml | 2 +- raylib/build.py | 2 ++ version.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3dd8823..471a3da 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/raylib/build.py b/raylib/build.py index 9124d6f..bbce1e5 100644 --- a/raylib/build.py +++ b/raylib/build.py @@ -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 diff --git a/version.py b/version.py index 6c8159a..8543012 100644 --- a/version.py +++ b/version.py @@ -1 +1 @@ -__version__ = "5.5.0.0.dev1" \ No newline at end of file +__version__ = "5.5.0.0.dev2" \ No newline at end of file