Skip to content

Commit 0d20f4b

Browse files
authored
chore: bump dependency versions for examples to "cocoindex>=0.3.9" (#1314)
1 parent 5702a0d commit 0d20f4b

File tree

25 files changed

+25
-29
lines changed

25 files changed

+25
-29
lines changed

examples/amazon_s3_embedding/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
description = "Simple example for cocoindex: build embedding index based on Amazon S3 files."
55
requires-python = ">=3.11"
66
dependencies = [
7-
"cocoindex[embeddings]>=0.2.8",
7+
"cocoindex[embeddings]>=0.3.9",
88
"python-dotenv>=1.0.1",
99
"psycopg[binary,pool]",
1010
]

examples/azure_blob_embedding/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
description = "Simple example for cocoindex: build embedding index based on Azure Blob Storage files."
55
requires-python = ">=3.11"
66
dependencies = [
7-
"cocoindex[embeddings]>=0.2.8",
7+
"cocoindex[embeddings]>=0.3.9",
88
"python-dotenv>=1.0.1",
99
"psycopg[binary,pool]",
1010
]

examples/code_embedding/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
description = "Simple example for cocoindex: build embedding index based on source code."
55
requires-python = ">=3.11"
66
dependencies = [
7-
"cocoindex[embeddings]>=0.2.8",
7+
"cocoindex[embeddings]>=0.3.9",
88
"python-dotenv>=1.0.1",
99
"pgvector>=0.4.1",
1010
"psycopg[binary,pool]",

examples/custom_output_files/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "custom-output-files"
33
version = "0.1.0"
44
description = "Simple example for cocoindex: convert markdown files to HTML files and save them to a local directory."
55
requires-python = ">=3.11"
6-
dependencies = ["cocoindex>=0.2.8", "markdown-it-py[linkify,plugins]"]
6+
dependencies = ["cocoindex>=0.3.9", "markdown-it-py[linkify,plugins]"]
77

88
[tool.setuptools]
99
packages = []

examples/custom_source_hn/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "custom-source-hn"
33
version = "0.1.0"
44
description = "Example using custom source for HackerNews API integration with cocoindex."
55
requires-python = ">=3.11"
6-
dependencies = ["cocoindex>=0.2.21", "aiohttp>=3.8.0", "psycopg[binary,pool]"]
6+
dependencies = ["cocoindex>=0.3.9", "aiohttp>=3.8.0", "psycopg[binary,pool]"]
77

88
[tool.setuptools]
99
packages = []

examples/docs_to_knowledge_graph/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "manuals-to-kg"
33
version = "0.1.0"
44
description = "Simple example for cocoindex: extract triples from files and build knowledge graph."
55
requires-python = ">=3.11"
6-
dependencies = ["cocoindex>=0.2.8"]
6+
dependencies = ["cocoindex>=0.3.9"]
77

88
[tool.setuptools]
99
packages = []

examples/face_recognition/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
description = "Build index for papers with both metadata and content embeddings"
55
requires-python = ">=3.11"
66
dependencies = [
7-
"cocoindex>=0.2.8",
7+
"cocoindex>=0.3.9",
88
"face-recognition>=1.3.0",
99
"pillow>=10.0.0",
1010
"numpy>=1.26.0",

examples/fastapi_server_docker/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cocoindex[embeddings]>=0.2.8
1+
cocoindex[embeddings]>=0.3.9
22
python-dotenv>=1.0.1
33
fastapi==0.115.12
44
fastapi-cli==0.0.7

examples/gdrive_text_embedding/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
description = "Simple example for cocoindex: build embedding index based on Google Drive files."
55
requires-python = ">=3.11"
66
dependencies = [
7-
"cocoindex[embeddings]>=0.2.8",
7+
"cocoindex[embeddings]>=0.3.9",
88
"python-dotenv>=1.0.1",
99
"psycopg[binary,pool]",
1010
]

examples/hn_trending_topics/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "hn-trending-topics"
33
version = "0.1.0"
44
description = "Example using custom source for HackerNews API to extract trending topics with LLM."
55
requires-python = ">=3.11"
6-
dependencies = ["cocoindex>=0.2.21", "aiohttp>=3.8.0", "psycopg[binary,pool]"]
6+
dependencies = ["cocoindex>=0.3.9", "aiohttp>=3.8.0", "psycopg[binary,pool]"]
77

88
[tool.setuptools]
99
packages = []

0 commit comments

Comments
 (0)