summaryrefslogtreecommitdiff
path: root/doc/development_guide/testing.rst
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-11 15:22:18 +0200
committerGitHub <noreply@github.com>2022-04-11 15:22:18 +0200
commitdfd23f61d5da4d8531a10f0d829ab5b05bce292e (patch)
tree051e2bf55ba46bd0d295fa3a91a7eeac6f9a5155 /doc/development_guide/testing.rst
parent06f67b760420987c7a03f62684e1c6128e173f7a (diff)
downloadpylint-git-dfd23f61d5da4d8531a10f0d829ab5b05bce292e.tar.gz
Require python ``3.7.2+`` (#5921)
* Remove env from tox * Add changelog
Diffstat (limited to 'doc/development_guide/testing.rst')
-rw-r--r--doc/development_guide/testing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development_guide/testing.rst b/doc/development_guide/testing.rst
index af14ad4ab..fa0a988d5 100644
--- a/doc/development_guide/testing.rst
+++ b/doc/development_guide/testing.rst
@@ -32,7 +32,7 @@ Before writing a new test it is often a good idea to ensure that your change isn
breaking a current test. You can run our tests using the tox_ package, as in::
python -m tox
- python -m tox -epy36 # for Python 3.6 suite only
+ python -m tox -epy38 # for Python 3.8 suite only
python -m tox -epylint # for running Pylint over Pylint's codebase
python -m tox -eformatting # for running formatting checks over Pylint's codebase