From 3a080bf55728cc18016f99b6a8fcdcc71b6783a6 Mon Sep 17 00:00:00 2001 From: medmunds Date: Sun, 12 Jan 2014 11:02:54 -0800 Subject: [PATCH] Require Django>=1.3 Djrill is known not to work on Django 1.2. (You could probably backport it without too much difficulty, but you would also run into requests compatibility issues.) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 67813b3..bd408fc 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( license="BSD License", packages=["djrill"], zip_safe=False, - install_requires=["requests", "django"], + install_requires=["requests", "django>=1.3"], include_package_data=True, test_suite="runtests.runtests", tests_require=["mock"],