diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-01 08:46:43 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-01 08:46:43 -0400 |
commit | 9e67e71377cea9adaaeab6dbb024f2af94ba7999 (patch) | |
tree | bff33f1b78f0076b2cd8d09fe3bb54ca41063dab /.travis.yml | |
parent | c52a400f347ced8d6cc29350800ee11f5a08591e (diff) |
removed references to python 3.2, which has basically no usage
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 9a55dbb6..5f444d93 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ sudo: false python: - "2.6" - "2.7" - - "3.2" - "3.3" - "3.4" install: @@ -19,9 +18,8 @@ script: # Run 'docs' first since its objects.inv is referred to by 'www'. # Also force warnings to be errors since most of them tend to be actual # problems. - # Finally, skip them under Python 3.2 due to sphinx shenanigans - - "[[ $TRAVIS_PYTHON_VERSION != 3.2 ]] && invoke docs -o -W || true" - - "[[ $TRAVIS_PYTHON_VERSION != 3.2 ]] && invoke www -o -W || true" + - "invoke docs -o -W || true" + - "invoke www -o -W || true" notifications: irc: channels: "irc.freenode.org#paramiko" |