From c6f79592d8f7a399aaebe6b84542f2974e4c4fde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Wed, 1 Apr 2026 18:57:05 -0700 Subject: [PATCH] remove deprecated sync package --- src/pipecat/sync/__init__.py | 0 src/pipecat/sync/base_notifier.py | 17 ----------------- src/pipecat/sync/event_notifier.py | 17 ----------------- 3 files changed, 34 deletions(-) delete mode 100644 src/pipecat/sync/__init__.py delete mode 100644 src/pipecat/sync/base_notifier.py delete mode 100644 src/pipecat/sync/event_notifier.py 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, - )