From fc42f5ab6da24e6dc57732287781b4737c0527fe Mon Sep 17 00:00:00 2001 From: Yeesian Ng Date: Thu, 22 Jan 2026 08:03:47 -0800 Subject: [PATCH] chore: Bump lower bound on python version to 3.10 Python 3.9 has reached EOL per https://devguide.python.org/versions/ PiperOrigin-RevId: 859612381 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index edf3fca906..b60c4e2956 100644 --- a/setup.py +++ b/setup.py @@ -351,7 +351,7 @@ "llama_index": llama_index_extra_require, "llama_index_testing": llama_index_testing_extra_require, }, - python_requires=">=3.9", + python_requires=">=3.10", classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers",