diff options
author | Mark Roberts <wizzat@gmail.com> | 2014-04-30 22:02:05 -0700 |
---|---|---|
committer | Mark Roberts <wizzat@gmail.com> | 2014-04-30 22:02:05 -0700 |
commit | 83d95710e536880b278bf5429fa2f89f753d05d1 (patch) | |
tree | bfcc686602a5ac19e422643fad0571036c36b058 | |
parent | c307a3aac6f3fa6e9f75a301a85800252c24abaa (diff) | |
download | kafka-python-83d95710e536880b278bf5429fa2f89f753d05d1.tar.gz |
Temporarily remove Python26 support from travis.yml
-rw-r--r-- | .travis.yml | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index e14bb77..4ec5802 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: python python: - - 2.6 - 2.7 before_install: @@ -10,13 +9,13 @@ before_install: - ./build_integration.sh install: - - pip install tox - - pip install . - # Deal with issue on Travis builders re: multiprocessing.Queue :( - # See https://github.com/travis-ci/travis-cookbooks/issues/155 - - sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm + - pip install tox + - pip install . + # Deal with issue on Travis builders re: multiprocessing.Queue :( + # See https://github.com/travis-ci/travis-cookbooks/issues/155 + - sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm script: - - tox - - KAFKA_VERSION=0.8.0 tox - - KAFKA_VERSION=0.8.1 tox + - tox -e py27 + - KAFKA_VERSION=0.8.0 tox -e py27 + - KAFKA_VERSION=0.8.1 tox -e py27 |