From d6ba624c6eaedf1b6ce7d5e5a05a46163f91adf7 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Sat, 4 Jan 2025 20:09:34 +0000 Subject: [PATCH] fix missing mac builds --- .cirrus.yml | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 315d834..77da08d 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -89,6 +89,12 @@ mac_task: - env: PY_VER: "3.11" RAYLIB_PLATFORM: Desktop + - env: + PY_VER: "3.11" + RAYLIB_PLATFORM: SDL + - env: + PY_VER: "3.12" + RAYLIB_PLATFORM: Desktop - env: PY_VER: "3.12" RAYLIB_PLATFORM: SDL diff --git a/setup.py b/setup.py index c91f3bb..edac878 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ class BinaryDistribution(Distribution): # should be name="raylib"+NAME but then Github doesn't track dependants setup( - name="raylib", + name="raylib"+NAME, version=VERSION, description="Python CFFI bindings for Raylib", long_description=README,