From f194fab10b137c23abac4aaa06bada32e7e57b51 Mon Sep 17 00:00:00 2001 From: Avasam Date: Sun, 25 Aug 2024 13:17:20 -0400 Subject: [PATCH] Pass mypy and link issues --- mypy.ini | 8 ++++++++ pyproject.toml | 4 ---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/mypy.ini b/mypy.ini index 83b0d15..0bc6514 100644 --- a/mypy.ini +++ b/mypy.ini @@ -12,3 +12,11 @@ explicit_package_bases = True # Disable overload-overlap due to many false-positives disable_error_code = overload-overlap + +# jaraco/jaraco.text#17 +[mypy-jaraco.text.*] +ignore_missing_imports = True + +# jaraco/jaraco.net#7 +[mypy-jaraco.net.*] +ignore_missing_imports = True diff --git a/pyproject.toml b/pyproject.toml index e9dc678..746d870 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,7 +69,3 @@ type = [ [tool.setuptools_scm] - - -[tool.pytest-enabler.mypy] -# Disabled due to jaraco/skeleton#143