From b3731cfee5be94646886a0a3a4db8b7fe073cd10 Mon Sep 17 00:00:00 2001 From: Sergiy Matusevych Date: Mon, 29 Jul 2024 17:56:43 -0700 Subject: [PATCH] remove pylint and mypy workarounds for ConfigSpace --- pyproject.toml | 3 --- setup.cfg | 4 ---- 2 files changed, 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4380245f79..5464aa60b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,9 +30,6 @@ fail-on = [ "unused-import", ] -# Ignore pylint complaints about an upstream dependency. -ignored-modules = ["ConfigSpace.hyperparameters"] - # Help inform pylint where to find the project's source code without needing to relyon PYTHONPATH. #init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.append(os.path.dirname(find_pylintrc())); from logging import warning; warning(sys.path)" init-hook = "from logging import warning; warning(sys.path)" diff --git a/setup.cfg b/setup.cfg index 6f948f523a..cd3bdbb991 100644 --- a/setup.cfg +++ b/setup.cfg @@ -84,10 +84,6 @@ hide_error_codes = False # We also skip several vendor files that currently throw errors. exclude = (mlos_(core|bench|viz)/setup.py)|(doc/)|(/build/)|(-packages/_pytest/) -# https://github.com/automl/ConfigSpace/issues/293 -[mypy-ConfigSpace.*] -ignore_missing_imports = True - [mypy-fasteners.*] ignore_missing_imports = True