From 2d73d7dec1966475b6bb73021e88c8ad64515649 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Wed, 14 Feb 2018 08:38:04 +1300 Subject: [PATCH] README: update dependency versions Update the minor version of Django, and replace the list of dependencies with a pointer to requirements.txt since there's not much point maintaining that in two places (and the README wasn't complete anyway). Signed-off-by: Paul Eggleton --- README | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/README b/README index c7f7409..970c267 100644 --- a/README +++ b/README @@ -12,7 +12,7 @@ Setup In order to make use of this application you will need: * Python 3.4+ -* Django 1.8.x - tested with 1.8.17; newer versions may work, but +* Django 1.8.x - tested with 1.8.18; newer versions may work, but the application has not been tested with 1.9 or newer. * RabbitMQ 3.6.x - tested with 3.6.10. * For production usage, a web server set up to host Django applications @@ -20,14 +20,9 @@ In order to make use of this application you will need: * A database supported by Django (SQLite, MySQL, etc.). Django takes care of creating the database itself, you just need to ensure that the database server (if not using SQLite) is configured and running. -* The following third-party Django modules (tested versions listed): - * django-registration (2.1) - * django-reversion (1.9.3) - * django-reversion-compare (0.5.6) - * django-simple-captcha (0.4.6) - * django-nvd3 (0.14.2) - * djangorestframework (3.2.5) - * django-cors-headers (1.1.0) +* Third-party Django/python modules as detailed by requirements.txt. + If you're using pip, you can install these by running: + pip install -r requirements.txt * On the machine that will run the backend update script (which does not have to be the same machine as the web server, however it does still have to have Django installed, have the same or similar configuration