update to Django 1.5

(also, remove importlib as it's included in Python 2.7+)
This commit is contained in:
Frédéric Péters 2013-03-22 16:26:15 +01:00
parent da21072e19
commit cc849cbd52
2 changed files with 2 additions and 3 deletions

View File

@ -1,2 +1 @@
django == 1.4
importlib
django < 1.6

View File

@ -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',
],
)