Conda env does not use proper python version

I see a few issues:

  • You are installing Miniconda yourself, with miniconda.sh that you provide. So you don’t need Travis’ Python, it only wastes time and makes things more confusing. Use language: generic.
  • source activate testenv likely has no effect. You should rather use conda activate.
    • This means that you are still using Travis’ Python after than line, producing the effect that you are seeing
1 Like