summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2014-04-23 22:29:39 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2014-04-23 22:29:39 -0300
commite2bf8e3a973bd9ea2118bb2a7087ce4098958519 (patch)
tree45eadca9be7ade84cee286ba1ad41c750759a1f3
parentd67c8e8e6cb7d668a08f4d39c8fa2435937ee601 (diff)
parent35aec760cc84f6e8cf7499ab5e4ca6b923005279 (diff)
downloadaskbot-e2bf8e3a973bd9ea2118bb2a7087ce4098958519.tar.gz
askbot-e2bf8e3a973bd9ea2118bb2a7087ce4098958519.tar.bz2
askbot-e2bf8e3a973bd9ea2118bb2a7087ce4098958519.zip
Merge pull request #208 from brightinteractive/allow_django_15x
Allow Django 1.5.x, not just 1.5 itself
-rw-r--r--askbot/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/__init__.py b/askbot/__init__.py
index 2ac9b6fb..40a2eedb 100644
--- a/askbot/__init__.py
+++ b/askbot/__init__.py
@@ -13,7 +13,7 @@ VERSION = (0, 7, 49)
#values - the package qualifier to use for pip
REQUIREMENTS = {
'akismet': 'akismet',
- 'django': 'django>=1.3.1,<=1.5',
+ 'django': 'django>=1.3.1,<1.6',
'compressor': 'django-compressor==1.2',
'jinja2': 'Jinja2',
'coffin': 'Coffin>=0.3',