Skip to content

Commit

Permalink
Bump mypy from 0.761 to 0.770 (#4621)
Browse files Browse the repository at this point in the history
* Bump mypy from 0.761 to 0.770

Bumps [mypy](https://github.com/python/mypy) from 0.761 to 0.770.
- [Release notes](https://github.com/python/mypy/releases)
- [Commits](python/mypy@v0.761...v0.770)

Signed-off-by: dependabot-preview[bot] <[email protected]>

* Drop type ignore

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Sviatoslav Sydorenko <[email protected]>
  • Loading branch information
dependabot-preview[bot] and webknjaz authored Mar 19, 2020
1 parent 0a847ff commit 913cd44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aiohttp/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ def setup_test_loop(
asyncio.set_event_loop(loop)
if sys.platform != "win32" and not skip_watcher:
policy = asyncio.get_event_loop_policy()
watcher = asyncio.SafeChildWatcher() # type: ignore
watcher = asyncio.SafeChildWatcher()
watcher.attach_loop(loop)
with contextlib.suppress(NotImplementedError):
policy.set_child_watcher(watcher)
Expand Down
2 changes: 1 addition & 1 deletion requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
setuptools-git==1.2
mypy==0.761; implementation_name=="cpython"
mypy==0.770; implementation_name=="cpython"
mypy-extensions==0.4.3; implementation_name=="cpython"
freezegun==0.3.15

Expand Down
2 changes: 1 addition & 1 deletion requirements/lint.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mypy==0.761; implementation_name=="cpython"
mypy==0.770; implementation_name=="cpython"
flake8==3.7.9
flake8-pyi==19.3.0; python_version >= "3.6"
black==19.10b0; python_version >= "3.6"
Expand Down

0 comments on commit 913cd44

Please sign in to comment.