diff --git a/mypy.ini b/mypy.ini index 83b0d15..e51f83d 100644 --- a/mypy.ini +++ b/mypy.ini @@ -12,3 +12,15 @@ explicit_package_bases = True # Disable overload-overlap due to many false-positives disable_error_code = overload-overlap + +# jaraco/jaraco.versioning#3 +[mypy-jaraco.versioning.*] +ignore_missing_imports = True + +# jaraco/jaraco.path#2 +[mypy-jaraco.path.*] +ignore_missing_imports = True + +# jaraco/tempora#35 +[mypy-tempora.*] +ignore_missing_imports = True diff --git a/pyproject.toml b/pyproject.toml index 681fde8..e5efa4f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -80,7 +80,3 @@ type = [ [project.entry-points] pytest11 = {"jaraco.vcs.fixtures" = "jaraco.vcs.fixtures"} - - -[tool.pytest-enabler.mypy] -# Disabled due to jaraco/skeleton#143