Merge pull request #1191 from BigRoy/enhancement/remove_deprecated_stdout_broker_import

Remove deprecated `StdOutBroker` import fallback
This commit is contained in:
Jakub Trllo 2025-04-23 10:55:29 +02:00 committed by GitHub
commit 5810b4f719
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 13 deletions

View file

@ -1,12 +0,0 @@
import warnings
from .broker import StdOutBroker
warnings.warn(
(
"Import of 'StdOutBroker' from 'ayon_core.tools.stdout_broker.app'"
" is deprecated. Please use 'ayon_core.tools.stdout_broker' instead."
),
DeprecationWarning
)
__all__ = ("StdOutBroker", )

View file

@ -9,4 +9,6 @@ plugin_for = ["ayon_server"]
ayon_server_version = ">=1.0.3,<2.0.0"
ayon_launcher_version = ">=1.0.2"
ayon_required_addons = {}
ayon_compatible_addons = {}
ayon_compatible_addons = {
"harmony": ">0.4.0",
}