From 6bf7a8c565ab56148fda421a74d802e13db92dac Mon Sep 17 00:00:00 2001 From: Mitchel Cabuloy Date: Fri, 21 Aug 2015 09:18:31 +0800 Subject: [PATCH 1/2] Update tested Django versions --- .travis.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7b0d6a7..5bc8191 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,11 +5,11 @@ python: - "3.3" - "3.4" env: - - DJANGO=django==1.4.20 + - DJANGO=django==1.4.22 - DJANGO=django==1.5.12 - DJANGO=django==1.6.11 - - DJANGO=django==1.7.8 - - DJANGO=django==1.8.2 + - DJANGO=django==1.7.10 + - DJANGO=django==1.8.4 install: - if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install importlib argparse; fi - pip install $DJANGO @@ -19,10 +19,10 @@ script: python manage.py behave --tags=~@failing && python tests.py matrix: exclude: - python: "2.6" - env: DJANGO=django==1.7.8 + env: DJANGO=django==1.7.10 - python: "2.6" - env: DJANGO=django==1.8.2 + env: DJANGO=django==1.8.4 - python: "3.3" - env: DJANGO=django==1.4.20 + env: DJANGO=django==1.4.22 - python: "3.4" - env: DJANGO=django==1.4.20 + env: DJANGO=django==1.4.22 From 0c7e4279eb3aef5cd7f340bfb2bf8a8942472a50 Mon Sep 17 00:00:00 2001 From: Mitchel Cabuloy Date: Fri, 21 Aug 2015 09:26:31 +0800 Subject: [PATCH 2/2] Update mentioned Django versions in the docs --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 24a0bdc..aff561a 100644 --- a/README.rst +++ b/README.rst @@ -27,7 +27,7 @@ Support behave-django supports all current Django and Python versions. Specifically, our tests cover: -Django 1.4.20, 1.5.12, 1.6.11, 1.7.8, 1.8.2, and Python 2.6, 2.7, 3.3, 3.4. +Django 1.4.22, 1.5.12, 1.6.11, 1.7.10, 1.8.4, and Python 2.6, 2.7, 3.3, 3.4. .. install-marker