fix django requirements: >= 1.7.1 and <1.8
1.7.0 had some bugs in migrations, avoid. 1.8 is not tested.
This commit is contained in:
parent
4b5915ab3f
commit
46cdbd4e53
@ -1,7 +1,7 @@
|
|||||||
# packages always needed
|
# packages always needed
|
||||||
dnspython
|
dnspython
|
||||||
netaddr
|
netaddr
|
||||||
django==1.7.1
|
django>=1.7.1, <1.8
|
||||||
django-bootstrap-form
|
django-bootstrap-form
|
||||||
django-registration-redux
|
django-registration-redux
|
||||||
django-extensions
|
django-extensions
|
||||||
|
2
setup.py
2
setup.py
@ -55,7 +55,7 @@ setup(
|
|||||||
platforms='any',
|
platforms='any',
|
||||||
install_requires=install_requires + [
|
install_requires=install_requires + [
|
||||||
'netaddr',
|
'netaddr',
|
||||||
'django>=1.7',
|
'django>=1.7.1, <1.8',
|
||||||
'django-bootstrap-form',
|
'django-bootstrap-form',
|
||||||
'django-registration-redux',
|
'django-registration-redux',
|
||||||
'django-extensions',
|
'django-extensions',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user