Skip to content

Commit e97135e

Browse files
try
1 parent 5dafa4e commit e97135e

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.cirrus.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ mac_task:
6161
macos_instance:
6262
matrix:
6363
- image: ghcr.io/cirruslabs/macos-sonoma-xcode:latest
64-
64+
env:
65+
MACOSX_DEPLOYMENT_TARGET: "11.0"
6566
matrix:
6667
- env:
6768
PY_VER: "3.9"

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
pip3 install "cffi>=1.17.1"
7777
pip3 install wheel
7878
pip3 install setuptools
79-
python setup.py bdist_wheel
79+
python setup.py bdist_wheel --plat-name macosx_10_13_x86_64
8080
8181
- name: Test
8282
run: |

BUILDING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ project.
3838
If the Pip build doesn’t work, please submit a bug. (And if you have
3939
fixed it, a PR.)
4040

41-
Manual instructions follow, but may be outdated, so see also how we actually build the wheels
41+
Manual instructions follow, but are probably outdated, so see instead how we actually build the wheels
4242
at https://github.com/electronstudio/raylib-python-cffi/blob/master/.github/workflows/build.yml
4343

4444
Windows manual build

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Use an [official Windows Python release](https://www.python.org/downloads/window
5252

5353
Binaries require:
5454
* arm64 MacOS 14
55-
* x64 MacOS 12, or newer.
55+
* x64 MacOS 10.13, or newer.
5656

5757
Older MacOS requires building from source but this is usually simple:
5858

@@ -87,7 +87,7 @@ This is not well tested but has better support for controllers:
8787
python3 -m pip uninstall raylib
8888
python3 -m pip install raylib_sdl
8989

90-
You can't have multiple backends installed at once.
90+
You can't have multiple raylib packages installed at once.
9191

9292
## DRM backend
9393

@@ -96,7 +96,7 @@ This uses the Linux framebuffer for devices that don't run X11/Wayland:
9696
python3 -m pip uninstall raylib
9797
python3 -m pip install raylib_drm
9898

99-
You can't have multiple backends installed at once.
99+
You can't have multiple raylib packages installed at once.
100100

101101
## Problems?
102102

0 commit comments

Comments
 (0)