From 6be27be8d2b6b3fdf0fa23159a43a4d4d441efff Mon Sep 17 00:00:00 2001 From: Marcus Olsson <8396880+marcusolsson@users.noreply.github.com> Date: Thu, 20 Mar 2025 17:37:19 +0100 Subject: [PATCH 1/2] fix(sdk/python): fix default value for pydantic type --- assemblyai/types.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assemblyai/types.py b/assemblyai/types.py index 8767201..f93e406 100644 --- a/assemblyai/types.py +++ b/assemblyai/types.py @@ -1823,10 +1823,9 @@ class ListTranscriptParameters(BaseModel): throttled_only: Annotated[ Optional[bool], Field( - default=None, deprecated="`throttled_only` is deprecated and will be removed in a future release.", ), - ] + ] = None "Get only throttled transcripts, overrides the status filter" model_config = ConfigDict(use_enum_values=True) From ff06b6777c7ff811c89d328a12d324f6a21a912a Mon Sep 17 00:00:00 2001 From: Marcus Olsson <8396880+marcusolsson@users.noreply.github.com> Date: Thu, 20 Mar 2025 18:33:44 +0100 Subject: [PATCH 2/2] chore(sdk/python): drop test suite for 3.8 --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1f4a614..48f696f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,6 @@ jobs: - "3.11" - "3.10" - "3.9" - - "3.8" os: - ubuntu-22.04 steps: