aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorIan Wienand <iwienand@redhat.com>2018-05-01 16:22:44 +1000
committerIan Wienand <iwienand@redhat.com>2018-05-01 22:41:46 +1000
commit14f75bcb5f3fe9734a6eb0d151ee748b12390fa7 (patch)
tree9781ebbd8799de35a21c5f62e4f83b577228f5db /.travis.yml
parentb5d72640a7a5be77e14548f41b69357e44187579 (diff)
downloadexternal_python_setuptools-14f75bcb5f3fe9734a6eb0d151ee748b12390fa7.tar.gz
external_python_setuptools-14f75bcb5f3fe9734a6eb0d151ee748b12390fa7.tar.bz2
external_python_setuptools-14f75bcb5f3fe9734a6eb0d151ee748b12390fa7.zip
Pin pytest-flake8 to 1.0.0
pytest-flake8 1.0.1 has a hard dependency on pytest>=3.5 [1], which does not support python3.3 [2]. Avoid it for python3.3 and below until python3.3 is removed [3]. Additionally, ensure we have a recent enough pip in travis ci to handle multiple requirements entries. [1] https://github.com/tholo/pytest-flake8/commit/25bbd3b42d3aa0962fb736202115dae9e5d2cd7c [2] https://docs.pytest.org/en/latest/changelog.html#pytest-3-3-0-2017-11-23 [3] https://github.com/pypa/setuptools/pull/1342
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index ced8fa6b..9f09c0fa 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -40,6 +40,8 @@ jobs:
cache: pip
install:
+# ensure we have recent pip/setuptools
+- pip install --upgrade pip setuptools
# need tox to get started
- pip install tox 'tox-venv; python_version!="3.3"'