“core dumped” means a C-level error. Most probably, you have extension modules incompatible with your system, instance of Python and/or each other.
I see that you are using dist: trusty which is EOL, Python from Anaconda (so you can use language: generic because you don’t need Travis’ Python installation logic, it only wastes time and complicates things for you) and installing modules from both Anaconda and PyPI.
Since no-one guarantees PyPI modules’ compatibility with Anaconda Python and Anaconda might have dropped Trusty support (as for individual modules, this is pretty much guaranteed), I’m not very surprised.
You have few chances to find the specific cause:
so the best course of action is to use a supported environment (omit dist:; also pay attention to other warnings at the “View config” tab), then localize the problem: compare module versions to your last successful build and change them one by one (or half at a time to get to a result in a logarithmic number of steps) until you find out which change triggers the problem.