From 75aa51663c6f49e0fe3573d91d2a35219b4c4638 Mon Sep 17 00:00:00 2001 From: lemorage Date: Wed, 11 Jun 2025 16:40:46 +0200 Subject: [PATCH] chore: update requires-python to >=3.11 in examples --- examples/code_embedding/pyproject.toml | 2 +- examples/docs_to_knowledge_graph/pyproject.toml | 2 +- examples/manuals_llm_extraction/pyproject.toml | 2 +- examples/pdf_embedding/pyproject.toml | 2 +- examples/product_recommendation/pyproject.toml | 2 +- examples/text_embedding/pyproject.toml | 2 +- examples/text_embedding_qdrant/pyproject.toml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/code_embedding/pyproject.toml b/examples/code_embedding/pyproject.toml index 040b5863b..4f2ce2363 100644 --- a/examples/code_embedding/pyproject.toml +++ b/examples/code_embedding/pyproject.toml @@ -2,7 +2,7 @@ name = "code-embedding" version = "0.1.0" description = "Simple example for cocoindex: build embedding index based on source code." -requires-python = ">=3.10" +requires-python = ">=3.11" dependencies = ["cocoindex>=0.1.42", "python-dotenv>=1.0.1"] [tool.setuptools] diff --git a/examples/docs_to_knowledge_graph/pyproject.toml b/examples/docs_to_knowledge_graph/pyproject.toml index a9a06cb24..cf73e3daa 100644 --- a/examples/docs_to_knowledge_graph/pyproject.toml +++ b/examples/docs_to_knowledge_graph/pyproject.toml @@ -2,7 +2,7 @@ name = "manuals-to-kg" version = "0.1.0" description = "Simple example for cocoindex: extract triples from files and build knowledge graph." -requires-python = ">=3.10" +requires-python = ">=3.11" dependencies = ["cocoindex>=0.1.42"] [tool.setuptools] diff --git a/examples/manuals_llm_extraction/pyproject.toml b/examples/manuals_llm_extraction/pyproject.toml index 0c2c4c39b..e0b21b0bd 100644 --- a/examples/manuals_llm_extraction/pyproject.toml +++ b/examples/manuals_llm_extraction/pyproject.toml @@ -2,7 +2,7 @@ name = "manuals-llm-extraction" version = "0.1.0" description = "Simple example for cocoindex: extract structured information from a Markdown file using LLM." -requires-python = ">=3.10" +requires-python = ">=3.11" dependencies = ["cocoindex>=0.1.42", "marker-pdf>=1.5.2"] [tool.setuptools] diff --git a/examples/pdf_embedding/pyproject.toml b/examples/pdf_embedding/pyproject.toml index 5250509dc..891aef143 100644 --- a/examples/pdf_embedding/pyproject.toml +++ b/examples/pdf_embedding/pyproject.toml @@ -2,7 +2,7 @@ name = "pdf-embedding" version = "0.1.0" description = "Simple example for cocoindex: build embedding index based on local PDF files." -requires-python = ">=3.10" +requires-python = ">=3.11" dependencies = [ "cocoindex>=0.1.42", "python-dotenv>=1.0.1", diff --git a/examples/product_recommendation/pyproject.toml b/examples/product_recommendation/pyproject.toml index 0ed0ab9e6..8553b6630 100644 --- a/examples/product_recommendation/pyproject.toml +++ b/examples/product_recommendation/pyproject.toml @@ -2,7 +2,7 @@ name = "cocoindex-ecommerce-taxonomy" version = "0.1.0" description = "Simple example for CocoIndex: extract taxonomy from e-commerce products and build knowledge graph." -requires-python = ">=3.10" +requires-python = ">=3.11" dependencies = ["cocoindex>=0.1.42", "jinja2>=3.1.6"] [tool.setuptools] diff --git a/examples/text_embedding/pyproject.toml b/examples/text_embedding/pyproject.toml index 506c8db15..6da834f61 100644 --- a/examples/text_embedding/pyproject.toml +++ b/examples/text_embedding/pyproject.toml @@ -2,7 +2,7 @@ name = "text-embedding" version = "0.1.0" description = "Simple example for cocoindex: build embedding index based on local text files." -requires-python = ">=3.10" +requires-python = ">=3.11" dependencies = [ "cocoindex>=0.1.42", "python-dotenv>=1.0.1", diff --git a/examples/text_embedding_qdrant/pyproject.toml b/examples/text_embedding_qdrant/pyproject.toml index 49059dd6f..e905f764d 100644 --- a/examples/text_embedding_qdrant/pyproject.toml +++ b/examples/text_embedding_qdrant/pyproject.toml @@ -2,7 +2,7 @@ name = "text-embedding-qdrant" version = "0.1.0" description = "Simple example for cocoindex: build embedding index based on local text files." -requires-python = ">=3.10" +requires-python = ">=3.11" dependencies = [ "cocoindex>=0.1.42", "python-dotenv>=1.0.1",