summaryrefslogtreecommitdiff
path: root/tools/travis-before-install.sh
Commit message (Collapse)AuthorAgeFilesLines
* MNT add pickle5 to some python 3.6/7 setups for the CI suitePierre Glaser2018-10-051-0/+5
|
* TST: Update travis testing to use latest virtualenv.Charles Harris2018-09-011-6/+1
| | | | | | The virtualenv version was pinned to 14.0.6, which seems to have started causing test failures on Python 2.7 for some unknown reason. The lastest version is 16.0.0 and that seems to fix the problem.
* TST: Update travis and appveyor to use pytest.Charles Harris2018-04-041-1/+1
| | | | | For the time being, these tests will ignore the flood of deprecated yield test warnings. Fixing those is for another PR.
* MAINT,BUG: Fix mtrand for Cython 0.27.Charles Harris2017-09-251-1/+1
| | | | | | | The `import_array()` macro, that defined a C code block that included a return, was not handled correctly. The fix here is to cdef a replacement `import_array` function with a defined error return. The new function is a slight variation of the corresponding function defined by Cython.
* BUG: Cython 0.27 breaks NumPy on Python 3.Charles Harris2017-09-231-1/+1
| | | | | | The latest Cython came out and it causes the cythonized mtrand.c source to issue a compile warning for Python 3, breaking NumPy travis tests. As a temporary fix, force the tests to use Cython 0.26.
* BUG, TST: Fix python3-dbg bug in Travis scriptgfyoung2016-10-241-0/+31
With USE_DEBUG=1, the wrong python was being used to create the virtualenv, meaning that installed packages (e.g. Cython) were being installed to the wrong location.