From b345f48ac119412c213472879dc704bbe6123344 Mon Sep 17 00:00:00 2001 From: Sam Sykes Date: Tue, 17 Feb 2026 09:55:43 +0000 Subject: [PATCH 1/2] fix: update dependency specifier for speechmatics-voice Change the version specifier from >=0.2.8 to ~=0.2.8 for the speechmatics-voice package to ensure compatibility with future patch versions. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 71baec1f1..28c1a7e8c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -114,7 +114,7 @@ silero = [ "onnxruntime~=1.23.2" ] simli = [ "simli-ai~=1.0.3"] soniox = [ "pipecat-ai[websockets-base]" ] soundfile = [ "soundfile~=0.13.1" ] -speechmatics = [ "speechmatics-voice[smart]>=0.2.8" ] +speechmatics = [ "speechmatics-voice[smart]~=0.2.8" ] strands = [ "strands-agents>=1.9.1,<2" ] tavus=[] together = [] From 65fb88e61efcb09f08634eb0e72e892efc40b94d Mon Sep 17 00:00:00 2001 From: Sam Sykes Date: Tue, 17 Feb 2026 09:58:17 +0000 Subject: [PATCH 2/2] chore: update version specifier for speechmatics-voice Change the version specifier from `>=0.2.8` to `~=0.2.8` for the `speechmatics-voice` package. This ensures compatibility with future patch versions while preventing potential breaking changes from minor updates. --- changelog/3761.changed.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog/3761.changed.md diff --git a/changelog/3761.changed.md b/changelog/3761.changed.md new file mode 100644 index 000000000..71618502c --- /dev/null +++ b/changelog/3761.changed.md @@ -0,0 +1 @@ +- Change the version specifier from `>=0.2.8` to `~=0.2.8` for the `speechmatics-voice` package to ensure compatibility with future patch versions.