Skip to content

Commit 5ed6168

Browse files
authored
[MRG] Remove python 3.6 properly for all wheel building (#328)
* remove python3.6 properly
1 parent e39e05b commit 5ed6168

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build_wheels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
3737
- name: Build wheels
3838
env:
39-
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp*" # remove pypy on mac and win (wrong version)
39+
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp* cp36*" # remove pypy on mac and win (wrong version)
4040
CIBW_BEFORE_BUILD: "pip install numpy cython"
4141
run: |
4242
python -m cibuildwheel --output-dir wheelhouse

.github/workflows/build_wheels_weekly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Build wheels
4343
env:
44-
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp* cp*musl*" # remove pypy on mac and win (wrong version)
44+
CIBW_SKIP: "pp*-win* pp*-macosx* cp2* pp* cp*musl* cp36*" # remove pypy on mac and win (wrong version)
4545
CIBW_BEFORE_BUILD: "pip install numpy cython"
4646
CIBW_ARCHS_LINUX: auto aarch64 # force aarch64 with QEMU
4747
CIBW_ARCHS_MACOS: x86_64 universal2 arm64

0 commit comments

Comments
 (0)