diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-11-16 05:38:29 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-11-16 05:38:29 -0800 |
| commit | 699bd8720dc16ef5dd3321ebbeaa6fa94505b33f (patch) | |
| tree | 22c254891e58b1ed074ec493f88ba47eb1bd3809 /docs | |
| parent | a6d8b494c3de85eceb33ab57a046fb6955f909fc (diff) | |
| download | pyramid-699bd8720dc16ef5dd3321ebbeaa6fa94505b33f.tar.gz pyramid-699bd8720dc16ef5dd3321ebbeaa6fa94505b33f.tar.bz2 pyramid-699bd8720dc16ef5dd3321ebbeaa6fa94505b33f.zip | |
Remove virtualenv and explicit py3 mentions
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/narr/commandline.rst | 8 | ||||
| -rw-r--r-- | docs/quick_tutorial/requirements.rst | 3 |
2 files changed, 5 insertions, 6 deletions
diff --git a/docs/narr/commandline.rst b/docs/narr/commandline.rst index b571a7d7b..962193ec3 100644 --- a/docs/narr/commandline.rst +++ b/docs/narr/commandline.rst @@ -1006,8 +1006,8 @@ top-level directory, your ``setup.py`` file will look something like this: requires = ['pyramid', 'pyramid_debugtoolbar'] tests_require = [ - 'WebTest >= 1.3.1', # py3 compat - 'pytest', # includes virtualenv + 'WebTest >= 1.3.1', + 'pytest', 'pytest-cov', ] @@ -1073,8 +1073,8 @@ The result will be something like: requires = ['pyramid', 'pyramid_debugtoolbar'] tests_require = [ - 'WebTest >= 1.3.1', # py3 compat - 'pytest', # includes virtualenv + 'WebTest >= 1.3.1', + 'pytest', 'pytest-cov', ] diff --git a/docs/quick_tutorial/requirements.rst b/docs/quick_tutorial/requirements.rst index f3ffdf153..2ed9b8b55 100644 --- a/docs/quick_tutorial/requirements.rst +++ b/docs/quick_tutorial/requirements.rst @@ -157,8 +157,7 @@ environment variable. # Windows python -m venv %VENV% -.. seealso:: See also Python 3's :mod:`venv module <python:venv>` and Python - 2's `virtualenv <https://virtualenv.pypa.io/en/latest/>`_ package. +.. seealso:: See also :mod:`venv module <python:venv>`. Update packaging tools in the virtual environment |
