From cc849cbd5291bb8fcba2ec75c3004c0c63bf90fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 22 Mar 2013 16:26:15 +0100 Subject: [PATCH] update to Django 1.5 (also, remove importlib as it's included in Python 2.7+) --- requirements.txt | 3 +-- setup.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 57953ff..dae0e3e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1 @@ -django == 1.4 -importlib +django < 1.6 diff --git a/setup.py b/setup.py index 61daeca..9d0615c 100755 --- a/setup.py +++ b/setup.py @@ -12,6 +12,6 @@ setup(name='univcloud', author_email="info@entrouvert.com", packages=find_packages(os.path.dirname(__file__) or '.'), install_requires=[ - 'django >= 1.4.2, < 1.5', + 'django < 1.6', ], )