diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-11-20 16:07:18 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-11-20 16:07:18 +0000 |
| commit | 6874f5f2d59870a0dd8d0105e10066678fb14b96 (patch) | |
| tree | 9947eace758baea9ff050390acf1a42cb848d48f | |
| parent | try setting the env variables in using cibw (diff) | |
| download | pygensvm-6874f5f2d59870a0dd8d0105e10066678fb14b96.tar.gz pygensvm-6874f5f2d59870a0dd8d0105e10066678fb14b96.zip | |
Add cython as a requirement for tests
This seems weird, but it seems that the sklearn build
fails without cython.
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 19a50e2..e9e39f4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,6 +15,7 @@ matrix: - CC="gcc" - PYTHON="python3" - PIP="pip3" + - CIBW_TEST_REQUIRES="Cython" - CIBW_BEFORE_BUILD="yum install -y atlas-devel lapack-devel && pip install numpy Cython" - os: osx @@ -29,6 +30,7 @@ matrix: - CFLAGS="-fcommon" - PYTHON="python3" - PIP="pip3" + - CIBW_TEST_REQUIRES="Cython" - CIBW_BEFORE_BUILD="pip install numpy Cython" - os: windows language: shell |
