Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
CIBW_SKIP: "cp35-* cp36-*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
CIBW_MANYLINUX_I686_IMAGE: manylinux1
CIBW_BEFORE_BUILD: pip install numpy==1.15
CIBW_BEFORE_BUILD: pip install certifi numpy==1.15
MPL_DISABLE_FH4: "yes"

- name: Build wheels for CPython 3.6
Expand All @@ -52,7 +52,7 @@ jobs:
CIBW_BUILD: "cp36-*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
CIBW_MANYLINUX_I686_IMAGE: manylinux1
CIBW_BEFORE_BUILD: pip install numpy==1.15
CIBW_BEFORE_BUILD: pip install certifi numpy==1.15
MPL_DISABLE_FH4: "yes"
if: >
startsWith(github.ref, 'refs/heads/v3.3') ||
Expand All @@ -63,7 +63,7 @@ jobs:
python -m cibuildwheel --output-dir dist
env:
CIBW_BUILD: "pp3?-*"
CIBW_BEFORE_BUILD: pip install numpy==1.15
CIBW_BEFORE_BUILD: pip install certifi numpy==1.15
if: >
runner.os != 'Windows' && (
startsWith(github.ref, 'refs/heads/v3.3') ||
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,6 @@ def build_extensions(self):
"numpy>=1.15",
],
install_requires=[
"certifi>=2020.06.20",
"cycler>=0.10",
"kiwisolver>=1.0.1",
"numpy>=1.16",
Expand Down