From 6dd9d854df4546046f3dc954c11bf77942523a4e Mon Sep 17 00:00:00 2001 From: Erik Kaneda Date: Thu, 13 Nov 2025 11:10:38 -0800 Subject: [PATCH] bump minimum python version to 3.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When running with 3.9, I get the following: ``` ❯ uv sync Using CPython 3.9.6 interpreter at: /Applications/Xcode.app/Contents/Developer/usr/bin/python3 Creating virtual environment at: .venv Resolved 103 packages in 28.53s error: Distribution `onnxruntime==1.20.1 @ registry+https://pypi.org/simple` can't be installed because it doesn't have a source distribution or wheel for the current platform hint: You're using CPython 3.9 (`cp39`), but `onnxruntime` (v1.20.1) only has wheels with the following Python implementation tags: `cp310`, `cp311`, `cp312`, `cp313` ``` --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 621bc8a..26e6792 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "agent-starter-python" version = "1.0.0" description = "Simple voice AI assistant built with LiveKit Agents for Python" -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ "livekit-agents[silero,turn-detector]~=1.2",