From 6036c98a07d19dd1d922fcda3f43cffc3572e3ba Mon Sep 17 00:00:00 2001 From: Avasam Date: Mon, 26 Aug 2024 00:53:49 -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 efcb8cb..86ea80b 100644 --- a/mypy.ini +++ b/mypy.ini @@ -13,3 +13,11 @@ explicit_package_bases = True disable_error_code = # Disable due to many false positives overload-overlap, + +# jaraco/tempora#35 +[mypy-tempora.*] +ignore_missing_imports = True + +# jaraco/portend#17 +[mypy-portend.*] +ignore_missing_imports = True diff --git a/pyproject.toml b/pyproject.toml index c0b4cee..9a10cff 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