Skip to content

Commit 9663128

Browse files
authored
Merge branch 'master' into export_types
2 parents 11cc5e6 + 1fdad68 commit 9663128

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/hyperlink/_url.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ def _textcheck(name, value, delims=frozenset(), nullable=False):
467467
if not isinstance(value, Text):
468468
if nullable and value is None:
469469
# used by query string values
470-
return value # type: ignore[misc] # unreachable
470+
return value # type: ignore[unreachable]
471471
else:
472472
str_name = "unicode" if PY2 else "str"
473473
exp = str_name + ' or NoneType' if nullable else str_name

src/hyperlink/test/test_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def test_assertRaisesContextManager(self):
8888
with self.hyperlink_test.assertRaises(_ExpectedException) as cm:
8989
raise _ExpectedException
9090

91-
self.assertTrue( # type: ignore[misc] # unreachable
91+
self.assertTrue( # type: ignore[unreachable]
9292
isinstance(cm.exception, _ExpectedException)
9393
)
9494

tox.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ basepython =
3131
pypy3: pypy3
3232

3333
deps =
34-
test: coverage==4.5.4
35-
test: idna==2.8
34+
test: coverage==4.5.4 # rq.filter: <5
35+
test: idna==2.9
3636
test: typing==3.7.4.1
3737
test: {py26,py27,py34}: pytest==4.6.9
3838
test: {py35,py36,py37,py38}: pytest==5.2.4
@@ -142,7 +142,7 @@ basepython = python3.8
142142
skip_install = True
143143

144144
deps =
145-
mypy==0.761
145+
mypy==0.770
146146

147147
commands =
148148
mypy \
@@ -215,7 +215,7 @@ skip_install = True
215215

216216
deps =
217217
coverage==4.5.4
218-
codecov==2.0.15
218+
codecov==2.0.21
219219

220220
commands =
221221
# Note documentation for CI variables in default environment's passenv
@@ -282,8 +282,8 @@ description = check for potential packaging problems
282282
basepython = python
283283

284284
deps =
285-
check-manifest==0.40
286-
readme_renderer==24.0
285+
check-manifest==0.41
286+
readme-renderer==25.0
287287
twine==3.1.1
288288

289289
commands =

0 commit comments

Comments
 (0)