summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2023-04-24 22:36:24 +0200
committerGitHub <noreply@github.com>2023-04-24 22:36:24 +0200
commit3ff19e4ca34fde316881d916f9df22d3104d6464 (patch)
tree22a51fd2384d9b1fe1f3fd005752155031dfd036 /pylintrc
parentb36a6169069ad9694b63596eeaf2c95ce1c517f9 (diff)
downloadpylint-git-3ff19e4ca34fde316881d916f9df22d3104d6464.tar.gz
Drop support for Python 3.7 (#8609)
* Drop support for Python 3.7 * Update py-version + classifier * Update functional tests
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/pylintrc b/pylintrc
index 791b16447..3896d4e35 100644
--- a/pylintrc
+++ b/pylintrc
@@ -54,7 +54,7 @@ unsafe-load-any-extension=no
extension-pkg-allow-list=
# Minimum supported python version
-py-version = 3.7.2
+py-version = 3.8.0
# Control the amount of potential inferred values when inferring a single
# object. This can help the performance when dealing with large functions or
@@ -108,6 +108,7 @@ disable=
format,
# We anticipate #3512 where it will become optional
fixme,
+ consider-using-assignment-expr,
[REPORTS]