diff --git a/codebasin/__init__.py b/codebasin/__init__.py index 3ff43fe..002f03f 100644 --- a/codebasin/__init__.py +++ b/codebasin/__init__.py @@ -1,3 +1,13 @@ # Copyright (C) 2019-2024 Intel Corporation # SPDX-License-Identifier: BSD-3-Clause +import warnings + import codebasin.walkers + +warnings.warn( + "Calling codebasin package internals is deprecated. " + + "Please call the codebasin script directly instead. " + + "A new, stable, package interface will be introduced in " + + "a future release of Code Base Investigator.", + DeprecationWarning, +)