@@ -38,7 +38,7 @@ paths.source = [
38
38
]
39
39
40
40
[tool .mypy ]
41
- python_version = " 3.7 "
41
+ python_version = " 3.8 "
42
42
check_untyped_defs = true
43
43
explicit_package_bases = true
44
44
namespace_packages = true
@@ -91,8 +91,7 @@ ignore = [
91
91
" RUF012" , # Mutable class attributes should be annotated with `typing.ClassVar`
92
92
]
93
93
94
- # py36, but ruff does not support it :/
95
- target-version = " py37"
94
+ target-version = " py38"
96
95
97
96
[tool .ruff .pydocstyle ]
98
97
convention = " google"
@@ -115,7 +114,7 @@ convention = "google"
115
114
116
115
[tool .pylint ]
117
116
118
- py-version = " 3.6 "
117
+ py-version = " 3.8 "
119
118
120
119
ignore-paths =" tests/input" # Ignore test inputs
121
120
@@ -125,13 +124,11 @@ load-plugins= [
125
124
" pylint.extensions.broad_try_clause" ,
126
125
" pylint.extensions.check_elif" ,
127
126
" pylint.extensions.code_style" ,
128
- " pylint.extensions.comparetozero" ,
129
127
" pylint.extensions.comparison_placement" ,
130
128
" pylint.extensions.confusing_elif" ,
131
129
# "pylint.extensions.consider_ternary_expression", # Not a pretty refactoring
132
130
" pylint.extensions.docparams" ,
133
131
" pylint.extensions.docstyle" ,
134
- " pylint.extensions.emptystring" ,
135
132
" pylint.extensions.eq_without_hash" ,
136
133
" pylint.extensions.for_any_all" ,
137
134
" pylint.extensions.mccabe" ,
0 commit comments