summaryrefslogtreecommitdiff
path: root/doc/faq.rst
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2018-05-09 06:33:22 -0400
committerClaudiu Popa <pcmanticore@gmail.com>2018-05-09 06:33:22 -0400
commit98bd7a2bec1e5f6f022fda5c1d9a62e0a65b0bb6 (patch)
tree0b5278d70e18eab768f55e3b1dfe689b6b3cc5a4 /doc/faq.rst
parent50c319979174f4e78c60e254a6f0a414d1e03382 (diff)
downloadpylint-git-98bd7a2bec1e5f6f022fda5c1d9a62e0a65b0bb6.tar.gz
Add some extra notes on the Python 2 support
Diffstat (limited to 'doc/faq.rst')
-rw-r--r--doc/faq.rst15
1 files changed, 10 insertions, 5 deletions
diff --git a/doc/faq.rst b/doc/faq.rst
index b18ed299d..b255e6ab0 100644
--- a/doc/faq.rst
+++ b/doc/faq.rst
@@ -50,11 +50,16 @@ it is also working on PyPy.
2.4 What versions of Python is Pylint supporting?
--------------------------------------------------
-Since Pylint 2.0, we support only Python 3.4+.
-If you need Python 2 support, then Pylint 1.8 is for you. We will still
-do backports of bug fixes, and possibly for various Python 3 compatibility
-checks, at least until 2020, after which we'll stop support Python 2 altogether.
-If needed, we would also release another minor 1.9 release.
+Since Pylint 2.0, the supported running environment is Python 3.4+.
+
+That is, Pylint 2.0 is still able to analyze Python 2 files, but some
+specific checks might not work, as they would assume that their running
+environment was Python 2.
+
+If you need to run pylint with Python 2, then Pylint 1.8 or 1.9 is for you.
+We will still do backports of bug fixes, and possibly for various Python 3
+compatibility checks, at least until 2020, after which we'll stop support
+Python 2 altogether.
3. Running Pylint