diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-11-20 16:58:05 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-11-20 16:58:05 +0000 |
| commit | ac6f2f90c099981aa5788ae3780b253f0bb71f12 (patch) | |
| tree | d55eac15ad9a48c066287c975a0c4a7781fe9815 /.travis.yml | |
| parent | Attempt to fix build on 3.8 for mac and linux (diff) | |
| download | pygensvm-ac6f2f90c099981aa5788ae3780b253f0bb71f12.tar.gz pygensvm-ac6f2f90c099981aa5788ae3780b253f0bb71f12.zip | |
Disable 3.8 for now
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 12 |
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" |
