Skip to content

Commit c4261b6

Browse files
authored
Merge pull request matplotlib#20155 from QuLogic/fix-wheels
Fix wheel builds on CI
2 parents cf332ae + 6ea6814 commit c4261b6

File tree

2 files changed

+4
-18
lines changed

2 files changed

+4
-18
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
name: Build wheels on ${{ matrix.os }}
1414
runs-on: ${{ matrix.os }}
1515
env:
16-
min-numpy-version: "1.17.0"
17-
min-numpy-hash: "da/32/1b8f2bb5fb50e4db68543eb85ce37b9fa6660cd05b58bddfafafa7ed62da"
16+
min-numpy-version: "1.17.3"
17+
min-numpy-hash: "b6/d6/be8f975f5322336f62371c9abeb936d592c98c047ad63035f1b38ae08efe"
1818
strategy:
1919
matrix:
2020
os: [ubuntu-18.04, windows-latest, macos-latest]
@@ -57,7 +57,7 @@ jobs:
5757
cd numpy-${{ env.min-numpy-version }}
5858
python -m cibuildwheel --output-dir ../numpy-aarch64-cache
5959
env:
60-
CIBW_BUILD: "cp36-* cp37-* cp38-*"
60+
CIBW_BUILD: "cp37-* cp38-*"
6161
CIBW_ARCHS: aarch64
6262

6363
- name: Copy setup.cfg to configure wheel
@@ -86,20 +86,6 @@ jobs:
8686
MPL_DISABLE_FH4: "yes"
8787
CIBW_ARCHS: ${{ matrix.cibw_archs }}
8888

89-
- name: Build wheels for CPython 3.6
90-
run: |
91-
python -m cibuildwheel --output-dir dist
92-
env:
93-
CIBW_BUILD: "cp36-*"
94-
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
95-
CIBW_MANYLINUX_I686_IMAGE: manylinux1
96-
CIBW_BEFORE_BUILD: pip install certifi; pip install --find-links=numpy-aarch64-cache/ numpy==${{ env.min-numpy-version }}
97-
MPL_DISABLE_FH4: "yes"
98-
CIBW_ARCHS: ${{ matrix.cibw_archs }}
99-
if: >
100-
startsWith(github.ref, 'refs/heads/v3.3') ||
101-
startsWith(github.ref, 'refs/tags/v3.3')
102-
10389
- name: Build wheels for PyPy
10490
run: |
10591
python -m cibuildwheel --output-dir dist

.github/workflows/circleci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ jobs:
99
with:
1010
repo-token: ${{ secrets.GITHUB_TOKEN }}
1111
artifact-path: 0/doc/build/html/index.html
12-
circleci-jobs: docs-python36,docs-python37,docs-python38
12+
circleci-jobs: docs-python37,docs-python38,docs-python38-min

0 commit comments

Comments
 (0)