From 8e02155c4866ea5450aab2ff390546a3f93542a6 Mon Sep 17 00:00:00 2001 From: Tal Einat Date: Mon, 15 Aug 2016 09:11:02 +0300 Subject: [PATCH] fix Python3.2 tox tests failing due to virtualenv 14 --- .travis.yml | 2 ++ requirements_dev.txt | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 7a5900c..d2694b1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,8 @@ python: - "3.5" install: - pip install coveralls + # virtualenv < 14 is required to keep the Python 3.2 builds running + - pip install "virtualenv<14" - pip install tox==2.1.1 env: - TOXENV=py26-without_coverage diff --git a/requirements_dev.txt b/requirements_dev.txt index aaaf3ea..35552e9 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -1,4 +1,6 @@ bumpversion cython sphinx +# virtualenv < 14 is required to keep the Python 3.2 builds running +virtualenv<14 tox==2.1.1