summaryrefslogtreecommitdiff
path: root/doc/en/goodpractices.rst
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2019-02-21 13:03:19 -0300
committerGitHub <noreply@github.com>2019-02-21 13:03:19 -0300
commite75915bb736d91145fa630e2ef732c55e366ba16 (patch)
treed392471fcfa759512a9ca8072df51f15783a5422 /doc/en/goodpractices.rst
parentba2a43266a21e6808cf301dc574b545fafe55543 (diff)
downloadpytest-e75915bb736d91145fa630e2ef732c55e366ba16.tar.gz
Revert recommending virtualenv for Python 3.4
`venv` is already available in Python 3.4, my mistake
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 46733a4f2..48ce08ae3 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 3.4) and
+(or virtualenv_ for Python 2.7) 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.