fix missing mac builds
This commit is contained in:
parent
2c79346ae2
commit
d6ba624c6e
2 changed files with 7 additions and 1 deletions
|
@ -89,6 +89,12 @@ mac_task:
|
||||||
- env:
|
- env:
|
||||||
PY_VER: "3.11"
|
PY_VER: "3.11"
|
||||||
RAYLIB_PLATFORM: Desktop
|
RAYLIB_PLATFORM: Desktop
|
||||||
|
- env:
|
||||||
|
PY_VER: "3.11"
|
||||||
|
RAYLIB_PLATFORM: SDL
|
||||||
|
- env:
|
||||||
|
PY_VER: "3.12"
|
||||||
|
RAYLIB_PLATFORM: Desktop
|
||||||
- env:
|
- env:
|
||||||
PY_VER: "3.12"
|
PY_VER: "3.12"
|
||||||
RAYLIB_PLATFORM: SDL
|
RAYLIB_PLATFORM: SDL
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -25,7 +25,7 @@ class BinaryDistribution(Distribution):
|
||||||
|
|
||||||
# should be name="raylib"+NAME but then Github doesn't track dependants
|
# should be name="raylib"+NAME but then Github doesn't track dependants
|
||||||
setup(
|
setup(
|
||||||
name="raylib",
|
name="raylib"+NAME,
|
||||||
version=VERSION,
|
version=VERSION,
|
||||||
description="Python CFFI bindings for Raylib",
|
description="Python CFFI bindings for Raylib",
|
||||||
long_description=README,
|
long_description=README,
|
||||||
|
|
Reference in a new issue