From 926903240adddffea792a935d19ed83073f5da8f Mon Sep 17 00:00:00 2001 From: Avasam Date: Mon, 26 Aug 2024 16:30:52 -0400 Subject: [PATCH] Add missing types-setuptools in type test and re-enable mypy test --- jaraco/develop/compiler.py | 2 +- pyproject.toml | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/jaraco/develop/compiler.py b/jaraco/develop/compiler.py index d122f13..d8d14f6 100644 --- a/jaraco/develop/compiler.py +++ b/jaraco/develop/compiler.py @@ -3,7 +3,7 @@ import shutil import tempfile -from setuptools._distutils import ccompiler, sysconfig # type: ignore[import-untyped] +from setuptools._distutils import ccompiler, sysconfig from jaraco.ui.editor import EditableFile diff --git a/pyproject.toml b/pyproject.toml index 1ebeb5a..b4fdb5f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -80,11 +80,8 @@ type = [ "pytest-mypy", # local + "types-setuptools", ] [tool.setuptools_scm] - - -[tool.pytest-enabler.mypy] -# Disabled due to jaraco/skeleton#143