File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -3,22 +3,24 @@ language: python
33jobs :
44 include :
55 - os : linux
6- python : 3.6
6+ python : 3.7
7+ before_install :
8+ - export CC=gcc-5
9+ - export CXX=g++-5
710 - os : osx
8- python : 3.6
11+ osx_image : xcode10.2
12+ python : 3.7
13+ before_install :
14+ - export MACOSX_DEPLOYMENT_TARGET=10.9
15+ - export CC=clang
16+ - export CXX=clang++
917addons :
1018 apt :
1119 sources :
1220 - ubuntu-toolchain-r-test
1321 packages :
1422 - gcc-5
1523 - g++-5
16- before_install :
17- - if [ "TRAVIS_OS_NAME" = "linux"]; then export CC=gcc-5; fi
18- - if [ "TRAVIS_OS_NAME" = "linux"]; then export CXX=g++-5; fi
19- - if [ "TRAVIS_OS_NAME" = "osx"]; then export MACOSX_DEPLOYMENT_TARGET=10.9; fi
20- - if [ "TRAVIS_OS_NAME" = "osx"]; then export CC=clang; fi
21- - if [ "TRAVIS_OS_NAME" = "osx"]; then export CXX=clang++; fi
2224install :
2325 - pip install numpy
2426 - pip install --pre torch torchvision -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
You can’t perform that action at this time.
0 commit comments