aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 4 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 993d3f2..dc69add 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,9 +15,6 @@ matrix:
- CC="gcc"
- PYTHON="python3"
- PIP="pip3"
- # 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
@@ -32,9 +29,6 @@ matrix:
- CFLAGS="-fcommon"
- PYTHON="python3"
- PIP="pip3"
- # 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
@@ -52,8 +46,10 @@ matrix:
env:
global:
- # No longer actively maintaining gensvm for Python 2.7
- - CIBW_SKIP="cp27-*"
+ # - No longer actively maintaining gensvm for Python 2.7
+ # - Skipping 3.8 for now because scikit-learn is not available as wheel
+ # yet, and this breaks testing.
+ - CIBW_SKIP="cp27-* cp38-*"
# Run the unit tests on the wheels that are created
- CIBW_TEST_COMMAND="python -VV && python -m unittest discover -f -s {project}/test"