Skip to content

Commit

Permalink
Appveyor: Bugfix for py37, use right numpy/cython versions
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed May 2, 2019
1 parent 6102fa5 commit 952d885
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
environment:
TWINE_USERNAME: geostatframework
CIBW_BEFORE_BUILD: pip install numpy==1.13.0 cython==0.26
global:
TWINE_USERNAME: geostatframework

matrix:
- PYTHON: "C:\\Python27"
CIBW_BEFORE_BUILD: pip install numpy==1.13.0 cython==0.26
- PYTHON: "C:\\Python27-x64"
CIBW_BEFORE_BUILD: pip install numpy==1.13.0 cython==0.26
- PYTHON: "C:\\Python34"
CIBW_BEFORE_BUILD: pip install numpy==1.13.0 cython==0.26
- PYTHON: "C:\\Python34-x64"
CIBW_BEFORE_BUILD: pip install numpy==1.13.0 cython==0.26
- PYTHON: "C:\\Python35"
CIBW_BEFORE_BUILD: pip install numpy==1.13.0 cython==0.26
- PYTHON: "C:\\Python35-x64"
CIBW_BEFORE_BUILD: pip install numpy==1.13.0 cython==0.26
- PYTHON: "C:\\Python36"
CIBW_BEFORE_BUILD: pip install numpy==1.13.0 cython==0.26
- PYTHON: "C:\\Python36-x64"
CIBW_BEFORE_BUILD: pip install numpy==1.13.0 cython==0.26
- PYTHON: "C:\\Python37"
CIBW_BEFORE_BUILD: pip install numpy==1.14.5 cython==0.28.3
- PYTHON: "C:\\Python37-x64"
CIBW_BEFORE_BUILD: pip install numpy==1.14.5 cython==0.28.3

build_script:
- pip install cibuildwheel==0.10.1
Expand Down

0 comments on commit 952d885

Please sign in to comment.