Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ac6cb commit baba803Copy full SHA for baba803
1 file changed
.github/workflows/cibuildwheel.yml
@@ -40,6 +40,18 @@ jobs:
40
CIBW_MANYLINUX_I686_IMAGE: manylinux1
41
CIBW_BEFORE_BUILD: pip install numpy==1.15
42
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
+
55
- name: Build wheels for PyPy
56
run: |
57
python -m cibuildwheel --output-dir dist
0 commit comments