summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pylintrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/pylintrc b/pylintrc
index 2644057c..943d535f 100644
--- a/pylintrc
+++ b/pylintrc
@@ -42,6 +42,9 @@ unsafe-load-any-extension=no
# run arbitrary code
extension-pkg-whitelist=
+# Minimum supported python version
+py-version = 3.6.2
+
[REPORTS]
@@ -302,7 +305,7 @@ ignored-modules=typed_ast.ast3
ignored-classes=SQLObject
# Regex pattern to define which classes are considered mixins.
-mixin-class-rgx=.*Mix[i|I]n
+mixin-class-rgx=.*Mix[Ii]n
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E0201 when accessed. Python regular
@@ -406,8 +409,5 @@ overgeneral-exceptions=Exception
[TYPING]
-# Minimum supported python version (used for typing only!)
-py-version = 3.6
-
# Annotations are used exclusively for type checking
runtime-typing = no