summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorStephen Longofono <8992396+SLongofono@users.noreply.github.com>2018-11-06 13:15:50 -0500
committerClaudiu Popa <pcmanticore@gmail.com>2018-11-06 19:15:50 +0100
commit6e37ca37a78024dcc79ceb2431b0dfebd526f3ad (patch)
treea4ca6df1f56076648cb9d06530ba71bafb3d6471 /README.rst
parent9734baebfa3faf90e41f6ae41f80c379953fa56b (diff)
downloadpylint-git-6e37ca37a78024dcc79ceb2431b0dfebd526f3ad.tar.gz
Update README.rst (#2580)
As given, the install instructions gather a version of PyLint which does not support all the features of Python 3.6. For example, as of 11/3/2018, f-strings are not supported, and pyreverse3 will fail reporting a syntax error. After running upgrade as prescribed in the new instructions, this problem is solved.
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 094ff925c..189873f44 100644
--- a/README.rst
+++ b/README.rst
@@ -56,12 +56,15 @@ Pylint can be simply installed by running::
pip install pylint
+If you are using Python 3.6+, upgrade to get full support for your version::
+
+ pip install pylint --upgrade
If you want to install from a source distribution, extract the tarball and run
the following command ::
python setup.py install
-
+
Do make sure to do the same for astroid, which is used internally by pylint.