Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit baba803

Browse files
committed
Also build Python 3.6 wheels for v3.3.x.
1 parent e0ac6cb commit baba803

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,18 @@ jobs:
4040
CIBW_MANYLINUX_I686_IMAGE: manylinux1
4141
CIBW_BEFORE_BUILD: pip install numpy==1.15
4242

43+
- name: Build wheels for CPython 3.6
44+
run: |
45+
python -m cibuildwheel --output-dir dist
46+
env:
47+
CIBW_BUILD: "cp36-*"
48+
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
49+
CIBW_MANYLINUX_I686_IMAGE: manylinux1
50+
CIBW_BEFORE_BUILD: pip install numpy==1.15
51+
if: >
52+
startsWith(github.ref, 'refs/heads/v3.3') ||
53+
startsWith(github.ref, 'refs/tags/v3.3')
54+
4355
- name: Build wheels for PyPy
4456
run: |
4557
python -m cibuildwheel --output-dir dist

0 commit comments

Comments
 (0)