Skip to content

Commit 86083a2

Browse files
authored
chore: bump dependency version on cocoindex (#835)
1 parent 2214b16 commit 86083a2

File tree

17 files changed

+17
-20
lines changed

17 files changed

+17
-20
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.1.67",
7+
"cocoindex[embeddings]>=0.1.75",
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.1.67",
7+
"cocoindex[embeddings]>=0.1.75",
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.1.67",
7+
"cocoindex[embeddings]>=0.1.75",
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.1.74", "markdown-it-py[linkify,plugins]"]
6+
dependencies = ["cocoindex>=0.1.75", "markdown-it-py[linkify,plugins]"]
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.1.67"]
6+
dependencies = ["cocoindex>=0.1.75"]
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.1.71",
7+
"cocoindex>=0.1.75",
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.1.63
1+
cocoindex[embeddings]>=0.1.75
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.1.67",
7+
"cocoindex[embeddings]>=0.1.75",
88
"python-dotenv>=1.0.1",
99
"psycopg[binary,pool]",
1010
]

examples/image_search/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 images."
55
requires-python = ">=3.11"
66
dependencies = [
7-
"cocoindex>=0.1.67",
7+
"cocoindex>=0.1.75",
88
"python-dotenv>=1.0.1",
99
"fastapi>=0.100.0",
1010
"torch>=2.0.0",

examples/live_updates/pyproject.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@ name = "live-updates-example"
33
version = "0.1.0"
44
description = "Simple example for cocoindex: perform live updates based on local markdown files."
55
requires-python = ">=3.11"
6-
dependencies = [
7-
"cocoindex>=0.1.70",
8-
"python-dotenv>=1.1.0",
9-
]
6+
dependencies = ["cocoindex>=0.1.75", "python-dotenv>=1.1.0"]
107

118
[tools.setuptools]
129
packages = []

0 commit comments

Comments
 (0)