From ba2a43266a21e6808cf301dc574b545fafe55543 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 21 Feb 2019 12:52:09 -0300 Subject: [PATCH] Mention that virtualenv should be used for Python 3.4 as well --- doc/en/goodpractices.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/goodpractices.rst b/doc/en/goodpractices.rst index 48ce08ae3..46733a4f2 100644 --- a/doc/en/goodpractices.rst +++ b/doc/en/goodpractices.rst @@ -8,7 +8,7 @@ Install package with pip ------------------------------------------------- For development, we recommend you use venv_ for virtual environments -(or virtualenv_ for Python 2.7) and +(or virtualenv_ for Python 2.7 and 3.4) and pip_ for installing your application and any dependencies, as well as the ``pytest`` package itself. This ensures your code and dependencies are isolated from your system Python installation.