diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-03-04 13:23:25 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-03-04 13:23:25 +0000 |
| commit | 0488f789389bb8fb027f0c9652e98502ea6c2c94 (patch) | |
| tree | e08ddf85c90702ace623a19465850718517bf92d | |
| parent | Add test requirements (diff) | |
| download | pygensvm-0488f789389bb8fb027f0c9652e98502ea6c2c94.tar.gz pygensvm-0488f789389bb8fb027f0c9652e98502ea6c2c94.zip | |
Remove Python 3.5 from CIBW versions
The wheel for this version is no longer available,
and this breaks testing somehow (cibw tries to
build the wheel before installing in the virtualenv,
but doing so requires numpy, which is not yet
installed at that point.)
| -rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index b94ea43..3fa0812 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,9 +46,9 @@ matrix: env: global: # - 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-*" + # - Skipping 3.5 for now because scikit-learn is not available as wheel + # anymore, and this breaks testing. + - CIBW_SKIP="cp27-* cp35-*" # Run the unit tests on the wheels that are created - CIBW_TEST_REQUIRES="numpy Cython" - CIBW_TEST_COMMAND="python -VV && python -m unittest discover -f -s {project}/test" |
