Skip to content
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

Update gfortran version in .travis.yml #165

Merged
merged 1 commit into from
Jan 22, 2019
Merged
Changes from all commits
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
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ cache: pip
python:
- "3.6"

before_install: # camb requires gfortran to be at least gfortran-4.9
before_install: # camb requires gfortran to be at least gfortran-6
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get install gfortran-4.9 -y
- sudo ln -s /usr/bin/gfortran-4.9 /usr/bin/gfortran
- sudo apt-get install gfortran-8 -y
- sudo ln -s /usr/bin/gfortran-8 /usr/bin/gfortran

install:
- pip install --process-dependency-links .[full]
Expand Down