diff --git a/holland/commands/__init__.py b/holland/commands/__init__.py index 8c4e550a..9af5870b 100644 --- a/holland/commands/__init__.py +++ b/holland/commands/__init__.py @@ -2,4 +2,12 @@ Define command plugins """ +import warnings + +warnings.filterwarnings( + "ignore", + category=DeprecationWarning, + message="pkg_resources is deprecated as an API.*", +) + __import__("pkg_resources").declare_namespace(__name__)