8000 Python 3.5, reconfigure Travis by wholmgren · Pull Request #90 · pvlib/pvlib-python · GitHub
[go: up one dir, main page]

Skip to content

Python 3.5, reconfigure Travis #90

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 27, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
try adding ccache like scipy does
  • Loading branch information
wholmgren committed Oct 27, 2015
commit 5bb39e2e030282aa29e78cac7dee6270613c4dc8
12 changes: 8 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,19 @@ matrix:
- libgmp-dev
- libmpfr-dev

addons:
apt:
packages:
- ccache

# - ccache
#cache:
# directories:
# - $HOME/.ccache
cache:
directories:
- $HOME/.ccache

# setup miniconda for numpy, scipy, pandas
before_install:
- echo "before install"
- export PATH=/usr/lib/ccache:$PATH
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-3.16.0-Linux-x86_64.sh -O miniconda.sh;
else
Expand Down
0