Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove py2 references from README #732

Merged
merged 2 commits into from Oct 3, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 1 addition & 6 deletions README.rst
Expand Up @@ -23,12 +23,7 @@ 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``.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this first part is still important but should be replaced with python#.# -m pip ...


* 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 ``python3.# -m pyflakes .`` (for example, ``python3.10 -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.
Expand Down