summaryrefslogtreecommitdiff
path: root/doc/en/goodpractices.rst
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2019-02-21 12:52:09 -0300
committerGitHub <noreply@github.com>2019-02-21 12:52:09 -0300
commitba2a43266a21e6808cf301dc574b545fafe55543 (patch)
tree462aaa495136033686289434c637295a9bd40257 /doc/en/goodpractices.rst
parentcfaa8bbee85937dfef7e4cce6671bb38bf5863a8 (diff)
downloadpytest-ba2a43266a21e6808cf301dc574b545fafe55543.tar.gz
Mention that virtualenv should be used for Python 3.4 as well
Diffstat (limited to 'doc/en/goodpractices.rst')
-rw-r--r--doc/en/goodpractices.rst2
1 files changed, 1 insertions, 1 deletions
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.