summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Sepler <dannysepler@gmail.com>2022-10-03 16:27:13 -0400
committerGitHub <noreply@github.com>2022-10-03 16:27:13 -0400
commit853cce91634cbddff01cc16313b5467be1e95c54 (patch)
tree2b5fbe027b36db24d1813599418b4c84de44729a
parent04ecb0c324ef3b61124e2f80f9e1af6c3a4c7b26 (diff)
downloadpyflakes-853cce91634cbddff01cc16313b5467be1e95c54.tar.gz
Remove py2 references from README (#732)
* Remove reference of py2 from the README
-rw-r--r--README.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.rst b/README.rst
index 1e3625c..f4df853 100644
--- a/README.rst
+++ b/README.rst
@@ -24,11 +24,11 @@ It can be installed with::
Useful tips:
* Be sure to install it for a version of Python which is compatible
- with your codebase: for Python 2, ``pip2 install pyflakes`` and for
- Python3, ``pip3 install pyflakes``.
+ with your codebase: ``python#.# -m pip install pyflakes`` (for example,
+ ``python3.10 -m pip install pyflakes``)
-* You can also invoke Pyflakes with ``python3 -m pyflakes .`` or
- ``python2 -m pyflakes .`` if you have it installed for both versions.
+* You can also invoke Pyflakes with ``python#.# -m pyflakes .`` if you want
+ to run it for a specific python version.
* If you require more options and more flexibility, you could give a
look to Flake8_ too.