17
17
runs-on : macos-10.15
18
18
strategy :
19
19
matrix :
20
- python-version : [ '3.7', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9' ]
20
+ python-version : [ '3.7', '3.8', '3.9', '3.10', '3.11.0-alpha - 3.11.0', ' pypy-3.7', 'pypy-3.8', 'pypy-3.9' ]
21
21
steps :
22
22
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
23
23
- uses : actions/checkout@v2
52
52
python -m pip install --upgrade pip
53
53
pip3 install cffi
54
54
pip3 install wheel
55
- python setup.py bdist_wheel --plat-name macosx_10_15_x86_64 --py-limited-api=cp37
55
+ python setup.py bdist_wheel --plat-name macosx_10_15_x86_64
56
56
57
57
- name : Upload build Artifact wheel
58
58
uses : actions/upload-artifact@v2.2.4
64
64
runs-on : macos-12
65
65
strategy :
66
66
matrix :
67
- python-version : ['3.10.5' ]
67
+ python-version : ['3.10', '3.11.0-alpha - 3.11.0' ]
68
68
# Requires universal2 build of python, which we get if we ask for 3.10.5 x86! Pypy not available in universal2
69
69
steps :
70
70
- uses : actions/checkout@v2
@@ -149,8 +149,7 @@ jobs:
149
149
python -m pip install --upgrade pip
150
150
pip3 install cffi
151
151
pip3 install wheel
152
- python setup.py bdist_wheel --plat-name macosx_11_0_arm64 --py-limited-api=cp37
153
-
152
+ python setup.py bdist_wheel --plat-name macosx_11_0_arm64
154
153
155
154
- name : Upload build Artifact wheel
156
155
uses : actions/upload-artifact@v2.2.4
@@ -166,7 +165,7 @@ jobs:
166
165
# You can use PyPy versions in python-version.
167
166
# For example, pypy2 and pypy3
168
167
matrix :
169
- python-version : [ '3.7', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9' ]
168
+ python-version : [ '3.7', '3.8', '3.9', '3.10', '3.11.0-alpha - 3.11.0', ' pypy-3.7', 'pypy-3.8', 'pypy-3.9' ]
170
169
steps :
171
170
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
172
171
- uses : actions/checkout@v2
@@ -201,7 +200,7 @@ jobs:
201
200
python -m pip install --upgrade pip
202
201
pip3 install cffi
203
202
pip3 install wheel
204
- python setup.py bdist_wheel --plat-name manylinux2014_x86_64 --py-limited-api=cp37
203
+ python setup.py bdist_wheel --plat-name manylinux2014_x86_64
205
204
206
205
- name : Upload build Artifact wheel
207
206
uses : actions/upload-artifact@v2.2.4
@@ -233,7 +232,7 @@ jobs:
233
232
234
233
- name : Build raylib-python-cffi
235
234
run : |
236
- python3 setup.py bdist_wheel --py-limited-api=cp37
235
+ python3 setup.py bdist_wheel
237
236
238
237
- name : Upload build Artifact wheel
239
238
uses : actions/upload-artifact@v2.2.4
@@ -248,7 +247,7 @@ jobs:
248
247
# You can use PyPy versions in python-version.
249
248
# For example, pypy2 and pypy3
250
249
matrix :
251
- python-version : [ '3.7', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9' ]
250
+ python-version : [ '3.7', '3.8', '3.9', '3.10', '3.11.0-alpha - 3.11.0', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9' ]
252
251
steps :
253
252
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
254
253
- uses : actions/checkout@v2
@@ -286,7 +285,7 @@ jobs:
286
285
del raylib\dynamic\*.dll >nul 2>&1
287
286
del raylib\dynamic\*.dylib >nul 2>&1
288
287
del raylib\dynamic\32bit\* >nul 2>&1
289
- python setup.py bdist_wheel --py-limited-api=cp37
288
+ python setup.py bdist_wheel
290
289
shell : cmd
291
290
292
291
- name : Upload build Artifact wheel
@@ -319,7 +318,7 @@ jobs:
319
318
cd raylib-c
320
319
mkdir build
321
320
cd build
322
- cmake -DBUILD_EXAMPLES=off - DINCLUDE_EVERYTHING=on -DSUPPORT_FILEFORMAT_JPG=on -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
321
+ cmake -DINCLUDE_EVERYTHING=on -DSUPPORT_FILEFORMAT_JPG=on -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
323
322
make -j2
324
323
sudo make install
325
324
- name : Copy extras
0 commit comments