Skip to content

Commit 198c22c

Browse files
committed
chore: fix cicd cache issue and add grpcio version
1 parent 95d9d38 commit 198c22c

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/actions/camel_install/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ runs:
2121
name: Restore caches for the virtual environment based on uv.lock
2222
with:
2323
path: ./.venv
24-
key: venv-${{ hashFiles('uv.lock') }}
24+
key: venv-${{ hashFiles('uv.lock', 'pyproject.toml') }}
2525
- name: Validate cached virtual environment
2626
id: validate-venv
2727
if: steps.cache-restore.outputs.cache-hit == 'true'
@@ -49,4 +49,4 @@ runs:
4949
if: steps.cache-restore.outputs.cache-hit != 'true' || steps.validate-venv.outputs.cache-valid == 'false'
5050
with:
5151
path: ./.venv
52-
key: venv-${{ hashFiles('uv.lock') }}
52+
key: venv-${{ hashFiles('uv.lock', 'pyproject.toml') }}

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ rag = [
7474
"faiss-cpu>=1.7.2,<2",
7575
"weaviate-client>=4.15.0",
7676
"protobuf>=6.0.0",
77+
"grpcio>=1.72.0",
7778
"neo4j>=5.18.0,<6",
7879
"nebula3-python==3.8.2",
7980
"rank-bm25>=0.2.2,<0.3",
@@ -213,6 +214,7 @@ storage = [
213214
"pyobvector>=0.1.18; python_version < '3.13'",
214215
"weaviate-client>=4.15.0",
215216
"protobuf>=6.0.0",
217+
"grpcio>=1.72.0",
216218
"psycopg[binary]>=3.1.18,<4",
217219
"pgvector>=0.2.4,<0.3",
218220
"surrealdb>=1.0.6",
@@ -420,6 +422,7 @@ all = [
420422
"chunkr-ai>=0.0.50, <0.1.0",
421423
"weaviate-client>=4.15.0",
422424
"protobuf>=6.0.0",
425+
"grpcio>=1.72.0",
423426
"python-pptx>=1.0.2",
424427
"langfuse>=2.60.5",
425428
"Flask>=2.0",

uv.lock

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)