From d0865a6045eb7b01172c1a6d2a14da55a318762e Mon Sep 17 00:00:00 2001
From: Andrei Fajardo <92402603+nerdai@users.noreply.github.com>
Date: Tue, 20 Feb 2024 17:47:20 -0500
Subject: [PATCH] Update Python requirement to "3.8.1,<4.0" for llama-index-cli
 (#11054)

4.0
---
 llama-index-cli/CHANGELOG.MD   | 4 ++++
 llama-index-cli/pyproject.toml | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/llama-index-cli/CHANGELOG.MD b/llama-index-cli/CHANGELOG.MD
index 1e362cae2b..d480c22d24 100644
--- a/llama-index-cli/CHANGELOG.MD
+++ b/llama-index-cli/CHANGELOG.MD
@@ -1,5 +1,9 @@
 # CHANGELOG
 
+## [0.1.2] - 2024-02-20
+
+- Fix python requirement in pyproject.toml
+
 ## [0.1.1] - 2024-02-20
 
 - Upgrades ported over from core
diff --git a/llama-index-cli/pyproject.toml b/llama-index-cli/pyproject.toml
index 29e7c5c875..df92609266 100644
--- a/llama-index-cli/pyproject.toml
+++ b/llama-index-cli/pyproject.toml
@@ -31,10 +31,10 @@ maintainers = [
 name = "llama-index-cli"
 packages = [{include = "llama_index/"}]
 readme = "README.md"
-version = "0.1.1"
+version = "0.1.2"
 
 [tool.poetry.dependencies]
-python = ">=3.8.1,<3.12"
+python = ">=3.8.1,<4.0"
 llama-index-core = "^0.10.8.post1"
 llama-index-vector-stores-chroma = "^0.1.1"
 llama-index-embeddings-openai = "^0.1.1"
-- 
GitLab