diff --git a/setup.py b/setup.py index 0b8aebb..f6764fd 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,10 @@ packages=find_packages('src'), package_dir={'': 'src'}, include_package_data=True, - install_requires=['django>=1.8', - 'django-browserid', - 'mailmanclient'] + install_requires=[ + 'Django>=1.8', + 'Django<1.10', + 'django-browserid', + 'mailmanclient', + ], ) diff --git a/src/postorius/doc/setup.rst b/src/postorius/doc/setup.rst index 01d834e..38b20f8 100644 --- a/src/postorius/doc/setup.rst +++ b/src/postorius/doc/setup.rst @@ -77,8 +77,14 @@ $ cd .. This will create the ``.db file`` (if you ar using SQLite) and will setup all the -necessary db tables. You will also be prompted to create a superuser which -will act as an admin account for Postorius. +necessary db tables. + +To create a superuser which will act as an admin account for Postorius, run the +following commands:: + + $ cd postorius_standalone + $ python manage.py createsuperuser + $ cd .. Running the development server