Skip to content

Commit

Permalink
Update mypy to 0.510 (#30)
Browse files Browse the repository at this point in the history
* Update mypy from 0.471 to 0.510

* fix linting
  • Loading branch information
pyup-bot authored and samuelcolvin committed May 6, 2017
1 parent 63426e4 commit 5354293
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ htmlcov/
test.py
*.egg-info
docs/_build/
.mypy_cache/
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ lint:
python setup.py check -rms
flake8 arq/ tests/
pytest arq -p no:sugar -q --cache-clear
mypy --fast-parser --ignore-missing-imports --follow-imports=skip arq/
mypy --ignore-missing-imports --follow-imports=skip arq/

.PHONY: test
test:
Expand Down
3 changes: 2 additions & 1 deletion arq/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
from datetime import datetime
from importlib import import_module, reload
from multiprocessing import Process
from signal import Signals # type: ignore
from signal import Signals
from typing import Dict, Set # noqa

from .jobs import Job
from .logs import default_log_config
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
coverage==4.3.4
docutils==0.13.1
flake8==3.3.0
mypy==0.471
mypy==0.510
pycodestyle==2.3.1
pyflakes==1.5.0
pytest==3.0.7
Expand Down

0 comments on commit 5354293

Please sign in to comment.