File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,8 @@ mac_task:
61
61
macos_instance :
62
62
matrix :
63
63
- image : ghcr.io/cirruslabs/macos-sonoma-xcode:latest
64
-
64
+ env :
65
+ MACOSX_DEPLOYMENT_TARGET : " 11.0"
65
66
matrix :
66
67
- env :
67
68
PY_VER : " 3.9"
Original file line number Diff line number Diff line change 76
76
pip3 install "cffi>=1.17.1"
77
77
pip3 install wheel
78
78
pip3 install setuptools
79
- python setup.py bdist_wheel
79
+ python setup.py bdist_wheel --plat-name macosx_10_13_x86_64
80
80
81
81
- name : Test
82
82
run : |
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ project.
38
38
If the Pip build doesn’t work, please submit a bug. (And if you have
39
39
fixed it, a PR.)
40
40
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
42
42
at https://github.com/electronstudio/raylib-python-cffi/blob/master/.github/workflows/build.yml
43
43
44
44
Windows manual build
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ Use an [official Windows Python release](https://www.python.org/downloads/window
52
52
53
53
Binaries require:
54
54
* arm64 MacOS 14
55
- * x64 MacOS 12 , or newer.
55
+ * x64 MacOS 10.13 , or newer.
56
56
57
57
Older MacOS requires building from source but this is usually simple:
58
58
@@ -87,7 +87,7 @@ This is not well tested but has better support for controllers:
87
87
python3 -m pip uninstall raylib
88
88
python3 -m pip install raylib_sdl
89
89
90
- You can't have multiple backends installed at once.
90
+ You can't have multiple raylib packages installed at once.
91
91
92
92
## DRM backend
93
93
@@ -96,7 +96,7 @@ This uses the Linux framebuffer for devices that don't run X11/Wayland:
96
96
python3 -m pip uninstall raylib
97
97
python3 -m pip install raylib_drm
98
98
99
- You can't have multiple backends installed at once.
99
+ You can't have multiple raylib packages installed at once.
100
100
101
101
## Problems?
102
102
You can’t perform that action at this time.
0 commit comments