From 33afe951e85ee3d5ca06607ebc18b93c15b00cd4 Mon Sep 17 00:00:00 2001 From: Lorna Armstrong Date: Thu, 19 Mar 2026 16:11:07 +0000 Subject: [PATCH 1/3] Bump Speechmatics RT Dependency to 1.0.0 --- sdk/voice/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/voice/pyproject.toml b/sdk/voice/pyproject.toml index 9006bd1f..c67e5dc1 100644 --- a/sdk/voice/pyproject.toml +++ b/sdk/voice/pyproject.toml @@ -11,7 +11,7 @@ authors = [{ name = "Speechmatics", email = "support@speechmatics.com" }] license = "MIT" requires-python = ">=3.9" dependencies = [ - "speechmatics-rt>=0.5.3", + "speechmatics-rt>=1.0.0", "pydantic>=2.10.6,<3", "numpy>=1.26.4,<3" ] From e1c09444330bce9de5da1b34eee79e03a2f70cb4 Mon Sep 17 00:00:00 2001 From: Lorna Armstrong Date: Thu, 19 Mar 2026 16:50:15 +0000 Subject: [PATCH 2/3] Cap speechmatics-rt dependency to prevent pulling in breaking changes automatically --- sdk/voice/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sdk/voice/pyproject.toml b/sdk/voice/pyproject.toml index c67e5dc1..32ca3127 100644 --- a/sdk/voice/pyproject.toml +++ b/sdk/voice/pyproject.toml @@ -11,7 +11,7 @@ authors = [{ name = "Speechmatics", email = "support@speechmatics.com" }] license = "MIT" requires-python = ">=3.9" dependencies = [ - "speechmatics-rt>=1.0.0", + "speechmatics-rt>=1.0.0, <2", "pydantic>=2.10.6,<3", "numpy>=1.26.4,<3" ] @@ -53,6 +53,7 @@ dev = [ "pytest-asyncio", "pytest-cov", "pytest-mock", + "aiofiles", "build", ] From 42959dcc6f219f2656c8b6e60437e0f5420bd8c5 Mon Sep 17 00:00:00 2001 From: Lorna Armstrong Date: Thu, 19 Mar 2026 16:50:55 +0000 Subject: [PATCH 3/3] Linting --- sdk/voice/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/voice/pyproject.toml b/sdk/voice/pyproject.toml index 32ca3127..cd3f0e91 100644 --- a/sdk/voice/pyproject.toml +++ b/sdk/voice/pyproject.toml @@ -11,7 +11,7 @@ authors = [{ name = "Speechmatics", email = "support@speechmatics.com" }] license = "MIT" requires-python = ">=3.9" dependencies = [ - "speechmatics-rt>=1.0.0, <2", + "speechmatics-rt>=1.0.0,<2", "pydantic>=2.10.6,<3", "numpy>=1.26.4,<3" ]