File tree 3 files changed +13
-7
lines changed
3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 12
12
matrix :
13
13
os :
14
14
- windows-2019
15
- # - ubuntu-20.04
16
- # - macos-latest
15
+ - ubuntu-20.04
16
+ - macos-latest
17
17
python-version :
18
18
- " 2.7"
19
19
- " 3.13"
31
31
- " pypy-3.10"
32
32
lua-version :
33
33
- " bundle"
34
- # - "lua5.3"
35
- # - "lua5.2"
36
- # - "luajit-5.1"
34
+ - " lua5.3"
35
+ - " lua5.2"
36
+ - " luajit-5.1"
37
37
38
38
exclude :
39
39
- os : windows-2019
Original file line number Diff line number Diff line change 70
70
run : |
71
71
MATRIX=$(
72
72
{
73
- cibuildwheel --print-build-identifiers --platform windows \
73
+ cibuildwheel --print-build-identifiers --platform linux \
74
+ | jq -nRc '{"only": inputs, "os": "ubuntu-latest"}' \
75
+ && cibuildwheel --print-build-identifiers --platform macos \
76
+ | jq -nRc '{"only": inputs, "os": "macos-latest"}' \
77
+ && cibuildwheel --print-build-identifiers --platform windows \
74
78
| jq -nRc '{"only": inputs, "os": "windows-2019"}'
75
79
} | jq -sc
76
80
)
@@ -158,6 +162,7 @@ jobs:
158
162
name : Make Github release
159
163
needs : [ upload_release_assets ]
160
164
runs-on : ubuntu-latest
165
+ if : startsWith(github.ref, 'refs/tags/')
161
166
162
167
permissions :
163
168
contents : write # to create GitHub release (softprops/action-gh-release)
@@ -184,6 +189,7 @@ jobs:
184
189
name : Upload release to PyPI
185
190
needs : [ upload_release_assets ]
186
191
runs-on : ubuntu-latest
192
+ if : startsWith(github.ref, 'refs/tags/')
187
193
environment :
188
194
name : pypi
189
195
permissions :
Original file line number Diff line number Diff line change 19
19
except ImportError :
20
20
from distutils .core import setup , Extension
21
21
22
- VERSION = '2.4 '
22
+ VERSION = '2.6 '
23
23
24
24
extra_setup_args = {}
25
25
You can’t perform that action at this time.
0 commit comments