|
17 | 17 | runs-on: macos-10.15
|
18 | 18 | strategy:
|
19 | 19 | matrix:
|
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' ] |
| 20 | + python-version: [ '3.7', '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 |
| 55 | + python setup.py bdist_wheel --py-limited-api=cp37 |
56 | 56 |
|
57 | 57 | - name: Upload build Artifact wheel
|
58 | 58 |
|
|
64 | 64 | runs-on: macos-12
|
65 | 65 | strategy:
|
66 | 66 | matrix:
|
67 |
| - python-version: ['3.10', '3.11.0-alpha - 3.11.0' ] |
| 67 | + python-version: ['3.10' ] |
68 | 68 | steps:
|
69 | 69 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
70 | 70 | - uses: actions/checkout@v2
|
@@ -97,15 +97,16 @@ jobs:
|
97 | 97 | python -m pip install --upgrade pip
|
98 | 98 | pip3 install cffi
|
99 | 99 | pip3 install wheel
|
100 |
| - python setup.py bdist_wheel |
| 100 | + python setup.py bdist_wheel --py-limited-api=cp310 |
| 101 | +
|
101 | 102 |
|
102 | 103 | build-linux:
|
103 | 104 | runs-on: ubuntu-18.04
|
104 | 105 | strategy:
|
105 | 106 | # You can use PyPy versions in python-version.
|
106 | 107 | # For example, pypy2 and pypy3
|
107 | 108 | matrix:
|
108 |
| - 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' ] |
| 109 | + python-version: [ '3.7', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9' ] |
109 | 110 | steps:
|
110 | 111 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
111 | 112 | - uses: actions/checkout@v2
|
@@ -140,7 +141,7 @@ jobs:
|
140 | 141 | python -m pip install --upgrade pip
|
141 | 142 | pip3 install cffi
|
142 | 143 | pip3 install wheel
|
143 |
| - python setup.py bdist_wheel --plat-name manylinux2014_x86_64 |
| 144 | + python setup.py bdist_wheel --plat-name manylinux2014_x86_64 --py-limited-api=cp37 |
144 | 145 |
|
145 | 146 | - name: Upload build Artifact wheel
|
146 | 147 |
|
@@ -173,7 +174,7 @@ jobs:
|
173 | 174 | # You can use PyPy versions in python-version.
|
174 | 175 | # For example, pypy2 and pypy3
|
175 | 176 | matrix:
|
176 |
| - 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' ] |
| 177 | + python-version: [ '3.7', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9' ] |
177 | 178 | steps:
|
178 | 179 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
179 | 180 | - uses: actions/checkout@v2
|
@@ -211,7 +212,7 @@ jobs:
|
211 | 212 | del raylib\dynamic\*.dll >nul 2>&1
|
212 | 213 | del raylib\dynamic\*.dylib >nul 2>&1
|
213 | 214 | del raylib\dynamic\32bit\* >nul 2>&1
|
214 |
| - python setup.py bdist_wheel |
| 215 | + python setup.py bdist_wheel --py-limited-api=cp37 |
215 | 216 | shell: cmd
|
216 | 217 |
|
217 | 218 | - name: Upload build Artifact wheel
|
|
0 commit comments