summaryrefslogtreecommitdiff
path: root/doc/development_guide
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-12-06 23:23:37 +0100
committerGitHub <noreply@github.com>2022-12-06 23:23:37 +0100
commit233b9d6fe8efb5bb1e270f275201654d1e7467c8 (patch)
treee5ce2ab26bc4463ce4f5aaa438fd958b8d80358f /doc/development_guide
parent0ff97ddd3ff4fc1e044f76b72cea6c3e1b7e6127 (diff)
downloadpylint-git-233b9d6fe8efb5bb1e270f275201654d1e7467c8.tar.gz
Bump flake8 from 5.0.4 to 6.0.0 (#7859)
Bumps [flake8](https://github.com/pycqa/flake8) from 5.0.4 to 6.0.0. - [Release notes](https://github.com/pycqa/flake8/releases) - [Commits](https://github.com/pycqa/flake8/compare/5.0.4...6.0.0) --- updated-dependencies: - dependency-name: flake8 dependency-type: direct:production update-type: version-update:semver-major ... * Fix regression with inline comment * Update flake8 config * doc about required python interpreters for contributors Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
Diffstat (limited to 'doc/development_guide')
-rw-r--r--doc/development_guide/contributor_guide/contribute.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/development_guide/contributor_guide/contribute.rst b/doc/development_guide/contributor_guide/contribute.rst
index 492f8966b..0aaf2f8ed 100644
--- a/doc/development_guide/contributor_guide/contribute.rst
+++ b/doc/development_guide/contributor_guide/contribute.rst
@@ -57,8 +57,9 @@ Creating a pull request
Got a change for Pylint? Below are a few steps you should take to make sure
your patch gets accepted:
-- We recommend using Python 3.8 or higher for development of Pylint as it gives
- you access to the latest ``ast`` parser.
+- You must use at least Python 3.8 for development of Pylint as it gives
+ you access to the latest ``ast`` parser and some pre-commit hooks do not
+ support python 3.7.
- Install the dev dependencies, see :ref:`contributor_install`.