diff options
| -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: |
