From bba274df654a8132472d38993a8ee9d511ca8e3b Mon Sep 17 00:00:00 2001 From: ershang-dou Date: Thu, 10 Oct 2024 01:44:10 +0800 Subject: [PATCH] Remove Python version upper bound from fireworks package to support latest python version (#16440) --- .../llama-index-embeddings-fireworks/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama-index-integrations/embeddings/llama-index-embeddings-fireworks/pyproject.toml b/llama-index-integrations/embeddings/llama-index-embeddings-fireworks/pyproject.toml index 2f7bb10faedfe..c2b6c7b68073a 100644 --- a/llama-index-integrations/embeddings/llama-index-embeddings-fireworks/pyproject.toml +++ b/llama-index-integrations/embeddings/llama-index-embeddings-fireworks/pyproject.toml @@ -27,10 +27,10 @@ exclude = ["**/BUILD"] license = "MIT" name = "llama-index-embeddings-fireworks" readme = "README.md" -version = "0.2.0" +version = "0.2.1" [tool.poetry.dependencies] -python = ">=3.8.1,<3.12" +python = ">=3.8.1" llama-index-llms-openai = "^0.2.0" llama-index-core = "^0.11.0"