We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69b57b1 commit 601b409Copy full SHA for 601b409
.travis.yml
@@ -14,7 +14,8 @@ addons:
14
- gcc-4.9
15
- g++-4.9
16
before_install:
17
- - if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
+ - export CC="gcc-4.9"
18
+ - export CXX="g++-4.9"
19
install:
20
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install http://download.pytorch.org/whl/cpu/torch-0.4.1-cp27-cp27mu-linux_x86_64.whl; fi
21
- if [[ $TRAVIS_PYTHON_VERSION == 3.5 ]]; then pip install http://download.pytorch.org/whl/cpu/torch-0.4.1-cp35-cp35m-linux_x86_64.whl; fi
@@ -23,6 +24,8 @@ install:
23
24
- pip install flake8
25
- pip install codecov
26
script:
27
+ - which $CC
28
+ - which $CXX
29
- $CC --version
30
- $CXX --version
31
- pycodestyle .
0 commit comments