From e09f213f0cb37b844332e6922cc6b21b18f5c321 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 27 Jun 2016 18:55:23 +0200 Subject: [PATCH] Fixed developer documentation for Python 3.4 --- doc/development/setup.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/development/setup.rst b/doc/development/setup.rst index 3cf780b5b8..5c01f102ff 100644 --- a/doc/development/setup.rst +++ b/doc/development/setup.rst @@ -40,6 +40,10 @@ The first thing you need are all the main application's dependencies:: cd src/ pip install -r requirements.txt -r requirements/dev.txt +If you are working with Python 3.4, you will also need (you can skip this for Python 3.5):: + + pip install -r requirements/py34.txt + Then, create the local database:: python manage.py migrate