Skip to content

Commit c90b405

Browse files
authoredMay 13, 2020
mypy: fix ci, use a newer flake8 and flake8-pyi, ignore a new error (python#8812)
Co-authored-by: hauntsaninja <>
1 parent 22e504b commit c90b405

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎setup.cfg

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ exclude =
4343
# B011: Don't use assert False
4444
# F821: Name not defined (generates false positives with error codes)
4545
# F811: Redefinition of unused function (causes annoying errors with overloads)
46-
extend-ignore = E128,W601,E701,E704,E402,B3,B006,B007,B011,F821,F811
46+
# E741: Ambiguous variable name
47+
extend-ignore = E128,W601,E701,E704,E402,B3,B006,B007,B011,F821,F811,E741
4748

4849
[coverage:run]
4950
branch = true

‎test-requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
-r mypy-requirements.txt
22
attrs>=18.0
3-
flake8>=3.7
3+
flake8>=3.8.1
44
flake8-bugbear; python_version >= '3.5'
5-
flake8-pyi; python_version >= '3.6'
5+
flake8-pyi>=20.5; python_version >= '3.6'
66
lxml>=4.4.0
77
psutil>=4.0
88
pytest==5.3.2

0 commit comments

Comments
 (0)
Please sign in to comment.