From e73e3a7d9359d2037f8f30ec7dda2930ff9f2264 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Wed, 20 Nov 2019 12:42:14 +0000 Subject: Make sure Cython is available Since we're not running the install block, Cython isn't available by default, which causes the setup.py script to default to not building the C code. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 137a0ef..5862809 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ matrix: - CC="gcc" - PYTHON="python3" - PIP="pip3" - - CIBW_BEFORE_BUILD="yum install -y atlas-devel lapack-devel && pip install numpy" + - CIBW_BEFORE_BUILD="yum install -y atlas-devel lapack-devel && pip install numpy Cython" - os: osx language: generic @@ -29,7 +29,7 @@ matrix: - CFLAGS="-fcommon" - PYTHON="python3" - PIP="pip3" - - CIBW_BEFORE_BUILD="pip install numpy" + - CIBW_BEFORE_BUILD="pip install numpy Cython" - os: windows language: shell before_install: @@ -45,7 +45,7 @@ matrix: - PATH=/c/Python36:/c/Python36/Scripts:/c/ProgramData/chocolatey/bin:$PATH - PYTHON="python" - PIP="pip" - - CIBW_BEFORE_BUILD="/c/cibw/nuget.exe install lapacke -OutputDirectory /c/cibw/lapacke -Verbosity detailed && pip install numpy" + - CIBW_BEFORE_BUILD="/c/cibw/nuget.exe install lapacke -OutputDirectory /cibw/lapacke -Verbosity detailed && pip install numpy Cython" env: global: -- cgit v1.2.3