From e0d176a7b7af44eb17eb5341cadb6705cac20e5d Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Wed, 24 Apr 2013 11:40:34 +0300 Subject: Use newer version of Django in travis config. --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6e0da0a..c5385b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,8 +5,7 @@ python: env: - DJANGO_VERSION=1.3.7 - DJANGO_VERSION=1.4.5 - - DJANGO_VERSION=1.5 + - DJANGO_VERSION=1.5.1 install: - pip install Django==$DJANGO_VERSION - - python setup.py install script: python setup.py test -- cgit v1.2.3 From 49c09c0b9afb588fa3cde047075331ea81d18a55 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Wed, 24 Apr 2013 11:41:07 +0300 Subject: Bumped up the tests require settings to allow using Django 1.5.x. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ea40239..06cd86f 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( license='BSD', packages=find_packages(exclude=('tests', 'example')), tests_require=[ - 'django>=1.3,<1.5', + 'django>=1.3,<1.6', ], test_suite='runtests.runtests', include_package_data=True, -- cgit v1.2.3