From 62e93d92cfd9680dcb110037bc0cbf2c5a89f3f4 Mon Sep 17 00:00:00 2001 From: DamienGilliard <127743632+DamienGilliard@users.noreply.github.com> Date: Fri, 20 Feb 2026 12:10:16 +0100 Subject: [PATCH 1/2] fix-wip: re-test mypy locally --- src/gh/diffCheck/setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gh/diffCheck/setup.py b/src/gh/diffCheck/setup.py index f862e56a..2e444b3e 100644 --- a/src/gh/diffCheck/setup.py +++ b/src/gh/diffCheck/setup.py @@ -1,7 +1,5 @@ from setuptools import setup, find_packages - - setup( name="diffCheck", version="1.3.1", From cb6d6ffdc8318029b3156c619eb3652d9d12ade1 Mon Sep 17 00:00:00 2001 From: DamienGilliard <127743632+DamienGilliard@users.noreply.github.com> Date: Fri, 20 Feb 2026 12:32:44 +0100 Subject: [PATCH 2/2] fix-wip: test type ignore hint (copilot suggestion) --- src/gh/diffCheck/setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gh/diffCheck/setup.py b/src/gh/diffCheck/setup.py index 2e444b3e..6f497f55 100644 --- a/src/gh/diffCheck/setup.py +++ b/src/gh/diffCheck/setup.py @@ -1,5 +1,7 @@ + from setuptools import setup, find_packages + setup( name="diffCheck", version="1.3.1", @@ -22,7 +24,8 @@ "Programming Language :: Python :: 3.9", ], include_package_data=True, + # type: ignore[misc] package_data={ "diffCheck": ["diffCheck/dlls/*.dll", "*.pyd"] - }, + }, )