diff --git a/src/pipecat/sync/__init__.py b/src/pipecat/sync/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/src/pipecat/sync/base_notifier.py b/src/pipecat/sync/base_notifier.py deleted file mode 100644 index fb6e12732..000000000 --- a/src/pipecat/sync/base_notifier.py +++ /dev/null @@ -1,17 +0,0 @@ -# -# Copyright (c) 2024-2026, Daily -# -# SPDX-License-Identifier: BSD 2-Clause License -# - -"""Base notifier interface for Pipecat.""" - -import warnings - -with warnings.catch_warnings(): - warnings.simplefilter("always") - warnings.warn( - "Package pipecat.sync is deprecated, use pipecat.utils.sync instead.", - DeprecationWarning, - stacklevel=2, - ) diff --git a/src/pipecat/sync/event_notifier.py b/src/pipecat/sync/event_notifier.py deleted file mode 100644 index 6a6f6abbe..000000000 --- a/src/pipecat/sync/event_notifier.py +++ /dev/null @@ -1,17 +0,0 @@ -# -# Copyright (c) 2024-2026, Daily -# -# SPDX-License-Identifier: BSD 2-Clause License -# - -"""Event-based notifier implementation using asyncio Event primitives.""" - -import warnings - -with warnings.catch_warnings(): - warnings.simplefilter("always") - warnings.warn( - "Package pipecat.sync is deprecated, use pipecat.utils.sync instead.", - DeprecationWarning, - stacklevel=2, - )