Skip to content

Commit a5a2de7

Browse files
committed
Upgrade dependencies
This includes ignoring some new linting errors.
1 parent 89f442b commit a5a2de7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Diff for: tox.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ envlist = py36, py37, pypy, format, mypy, lint, packaging, docs
33

44
[testenv]
55
deps =
6-
pytest==4.5.0
6+
pytest==5.0.1
77
pytest-cov==2.7.1
88
{env:CI_DEPS:}
99
{env:EXTRA_DEPS:}
@@ -42,12 +42,12 @@ commands =
4242
basepython = python3.6
4343
# pylint==2.1.1 required due to prospector bug, see https://github.com/PyCQA/prospector/pull/309
4444
deps =
45-
prospector==1.1.6.2
45+
prospector==1.1.7
4646
commands = prospector
4747

4848
[testenv:docs]
4949
basepython = python3.6
50-
deps = sphinx==2.0.1
50+
deps = sphinx==2.1.2
5151
whitelist_externals = make
5252
changedir = {toxinidir}/docs
5353
commands =
@@ -57,7 +57,7 @@ commands =
5757
[testenv:packaging]
5858
basepython=python3.6
5959
deps =
60-
check-manifest==0.38
60+
check-manifest==0.39
6161
readme-renderer==24.0
6262
twine==1.13.0
6363
commands =

Diff for: wsproto/events.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Event(ABC):
1818
Base class for wsproto events.
1919
"""
2020

21-
pass
21+
pass # noqa
2222

2323

2424
@dataclass(frozen=True)

Diff for: wsproto/utilities.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class LocalProtocolError(ProtocolError):
2929
3030
"""
3131

32-
pass
32+
pass # noqa
3333

3434

3535
class RemoteProtocolError(ProtocolError):

0 commit comments

Comments
 (0)