diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2018-02-12 12:18:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-12 12:18:51 +0100 |
commit | ef270615f034ccfd909a3d9b6765eb7c58e3bba8 (patch) | |
tree | 2cc366d940becfd545b05f5dcc62ebed9b44f6f1 /.travis.yml | |
parent | b7baeb542d08eff79e543cdfb62171a08cab502c (diff) | |
download | spack-ef270615f034ccfd909a3d9b6765eb7c58e3bba8.tar.gz spack-ef270615f034ccfd909a3d9b6765eb7c58e3bba8.tar.bz2 spack-ef270615f034ccfd909a3d9b6765eb7c58e3bba8.tar.xz spack-ef270615f034ccfd909a3d9b6765eb7c58e3bba8.zip |
Use python3.6 to test building docs (#7218)
I think the main issue here is that we ship a custom version of a system
library (`argparse`), and this is prone to fail if `argparse` is
imported before we hack `sys.path` internally.
Probably a better solution would be not to customize argparse, but
instead have a wrapper on top of whatever the system provides.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 3b55797beb..dd4c255af9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ jobs: language: python env: TEST_SUITE=flake8 - stage: 'flake8 + documentation' - python: '2.7' + python: '3.6' os: linux language: python env: TEST_SUITE=doc |