diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-11-20 16:47:44 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-11-20 16:47:44 +0000 |
| commit | 26ddb9a3ddb8325030cc97fcfc31bcaa239671bf (patch) | |
| tree | 8141337261035888cb4c62eeddbfba96bee7251f /.travis.yml | |
| parent | Get some more debug info (diff) | |
| download | pygensvm-26ddb9a3ddb8325030cc97fcfc31bcaa239671bf.tar.gz pygensvm-26ddb9a3ddb8325030cc97fcfc31bcaa239671bf.zip | |
Attempt to fix build on 3.8 for mac and linux
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 8fd4479..993d3f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,9 @@ matrix: - CC="gcc" - PYTHON="python3" - PIP="pip3" - - CIBW_TEST_REQUIRES="Cython" + # we need to install Cython to build scikit-learn for cp38-*, as + # that wheel is not yet available. + - CIBW_TEST_EXTRAS="dev" - CIBW_BEFORE_BUILD="yum install -y atlas-devel lapack-devel && pip install numpy Cython" - os: osx @@ -30,8 +32,11 @@ matrix: - CFLAGS="-fcommon" - PYTHON="python3" - PIP="pip3" - - CIBW_TEST_REQUIRES="Cython" + # we need to install Cython to build scikit-learn for cp38-*, as + # that wheel is not yet available. + - CIBW_TEST_EXTRAS="dev" - CIBW_BEFORE_BUILD="pip install numpy Cython" + - os: windows language: shell before_install: |
