Skip to content

Commit 3093aeb

Browse files
committed
full scope
1 parent d78705c commit 3093aeb

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
matrix:
1313
os:
1414
- windows-2019
15-
# - ubuntu-20.04
16-
# - macos-latest
15+
- ubuntu-20.04
16+
- macos-latest
1717
python-version:
1818
- "2.7"
1919
- "3.13"
@@ -31,9 +31,9 @@ jobs:
3131
- "pypy-3.10"
3232
lua-version:
3333
- "bundle"
34-
# - "lua5.3"
35-
# - "lua5.2"
36-
# - "luajit-5.1"
34+
- "lua5.3"
35+
- "lua5.2"
36+
- "luajit-5.1"
3737

3838
exclude:
3939
- os: windows-2019

.github/workflows/wheels.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,11 @@ jobs:
7070
run: |
7171
MATRIX=$(
7272
{
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 \
7478
| jq -nRc '{"only": inputs, "os": "windows-2019"}'
7579
} | jq -sc
7680
)
@@ -158,6 +162,7 @@ jobs:
158162
name: Make Github release
159163
needs: [ upload_release_assets ]
160164
runs-on: ubuntu-latest
165+
if: startsWith(github.ref, 'refs/tags/')
161166

162167
permissions:
163168
contents: write # to create GitHub release (softprops/action-gh-release)
@@ -184,6 +189,7 @@ jobs:
184189
name: Upload release to PyPI
185190
needs: [ upload_release_assets ]
186191
runs-on: ubuntu-latest
192+
if: startsWith(github.ref, 'refs/tags/')
187193
environment:
188194
name: pypi
189195
permissions:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
except ImportError:
2020
from distutils.core import setup, Extension
2121

22-
VERSION = '2.4'
22+
VERSION = '2.6'
2323

2424
extra_setup_args = {}
2525

0 commit comments

Comments
 (0)