File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -39,13 +39,14 @@ repos:
39
39
exclude : ^src/blib2to3/
40
40
41
41
- repo : https://github.com/pre-commit/mirrors-mypy
42
- rev : v1.14.1
42
+ rev : v1.15.0
43
43
hooks :
44
44
- id : mypy
45
45
exclude : ^(docs/conf.py|scripts/generate_schema.py)$
46
46
args : []
47
47
additional_dependencies : &mypy_deps
48
48
- types-PyYAML
49
+ - types-atheris
49
50
- tomli >= 0.2.6, < 2.0.0
50
51
- click >= 8.1.0, != 8.1.4, != 8.1.5
51
52
- packaging >= 22.0
Original file line number Diff line number Diff line change @@ -224,6 +224,8 @@ branch = true
224
224
python_version = " 3.9"
225
225
mypy_path = " src"
226
226
strict = true
227
+ strict_bytes = true
228
+ local_partial_types = true
227
229
# Unreachable blocks have been an issue when compiling mypyc, let's try to avoid 'em in the first place.
228
230
warn_unreachable = true
229
231
implicit_reexport = true
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ def test_idempotent_any_syntatically_valid_python(
80
80
try :
81
81
import sys
82
82
83
- import atheris # type: ignore[import-not-found]
83
+ import atheris
84
84
except ImportError :
85
85
pass
86
86
else :
You can’t perform that action at this time.
0 commit comments