Skip to content

Commit e5f16a2

Browse files
authored
bump jaraco.test to py.typed version 5.5 in test extra (#4651)
1 parent 99c75c9 commit e5f16a2

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

mypy.ini

+7-3
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,20 @@ disable_error_code = import-not-found
5151
# - support for `SETUPTOOLS_USE_DISTUTILS=stdlib` is dropped (#3625)
5252
# for setuptools to import `_distutils` directly
5353
# - or non-stdlib distutils typings are exposed
54+
[mypy-distutils.*]
55+
ignore_missing_imports = True
56+
57+
# - wheel: does not intend on exposing a programmatic API https://github.com/pypa/wheel/pull/610#issuecomment-2081687671
58+
[mypy-wheel.*]
59+
ignore_missing_imports = True
5460
# - The following are not marked as py.typed:
5561
# - jaraco: Since mypy 1.12, the root name of the untyped namespace package gets called-out too
5662
# - jaraco.develop: https://github.com/jaraco/jaraco.develop/issues/22
5763
# - jaraco.envs: https://github.com/jaraco/jaraco.envs/issues/7
5864
# - jaraco.packaging: https://github.com/jaraco/jaraco.packaging/issues/20
5965
# - jaraco.path: https://github.com/jaraco/jaraco.path/issues/2
60-
# - jaraco.test: https://github.com/jaraco/jaraco.test/issues/7
6166
# - jaraco.text: https://github.com/jaraco/jaraco.text/issues/17
62-
# - wheel: does not intend on exposing a programmatic API https://github.com/pypa/wheel/pull/610#issuecomment-2081687671
63-
[mypy-distutils.*,jaraco,jaraco.develop,jaraco.envs,jaraco.packaging.*,jaraco.path,jaraco.test.*,jaraco.text,wheel.*]
67+
[mypy-jaraco,jaraco.develop,jaraco.envs,jaraco.packaging.*,jaraco.path,jaraco.text]
6468
ignore_missing_imports = True
6569

6670
# Even when excluding a module, import issues can show up due to following import

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ test = [
5959
# workaround for pypa/pyproject-hooks#206
6060
"pyproject-hooks!=1.1",
6161

62-
"jaraco.test",
62+
"jaraco.test>=5.5", # py.typed
6363
]
6464

6565
doc = [

0 commit comments

Comments
 (0)