summaryrefslogtreecommitdiff
path: root/docs/narr/commandline.rst
diff options
context:
space:
mode:
authorMichael Merickel <github@m.merickel.org>2018-11-18 12:56:45 -0600
committerGitHub <noreply@github.com>2018-11-18 12:56:45 -0600
commit880fcbdf366e231a746dc3ab694b1b88771d23c2 (patch)
treeb0349a9bfb006c26d454b96aaf7114f1714ba776 /docs/narr/commandline.rst
parentd4ce9d3f915b18425b4ce5224a51a89342270371 (diff)
parent847d1835a5b76da4925ee3248e69148cc4235df9 (diff)
downloadpyramid-880fcbdf366e231a746dc3ab694b1b88771d23c2.tar.gz
pyramid-880fcbdf366e231a746dc3ab694b1b88771d23c2.tar.bz2
pyramid-880fcbdf366e231a746dc3ab694b1b88771d23c2.zip
Merge pull request #5 from stevepiercy/drop-py2
Drop py2
Diffstat (limited to 'docs/narr/commandline.rst')
-rw-r--r--docs/narr/commandline.rst8
1 files changed, 4 insertions, 4 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',
]