Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/checkout@v3

- name: Setup packages
run: make update-package-versions VERSION=2.5.999
run: make update-package-versions VERSION=2.6.999

- name: Setup environment
run: python3 -m venv env
Expand Down
2 changes: 1 addition & 1 deletion trustgraph-bedrock/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "TrustGraph provides a means to run a pipeline of flexible AI proc
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"trustgraph-base>=2.5,<2.6",
"trustgraph-base>=2.6,<2.7",
"pulsar-client",
"prometheus-client",
"boto3",
Expand Down
2 changes: 1 addition & 1 deletion trustgraph-cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "TrustGraph provides a means to run a pipeline of flexible AI proc
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"trustgraph-base>=2.5,<2.6",
"trustgraph-base>=2.6,<2.7",
"requests",
"pulsar-client",
"aiohttp",
Expand Down
4 changes: 2 additions & 2 deletions trustgraph-embeddings-hf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ description = "HuggingFace embeddings support for TrustGraph."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"trustgraph-base>=2.5,<2.6",
"trustgraph-flow>=2.5,<2.6",
"trustgraph-base>=2.6,<2.7",
"trustgraph-flow>=2.6,<2.7",
"torch",
"urllib3",
"transformers",
Expand Down
2 changes: 1 addition & 1 deletion trustgraph-flow/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "TrustGraph provides a means to run a pipeline of flexible AI proc
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"trustgraph-base>=2.5,<2.6",
"trustgraph-base>=2.6,<2.7",
"aiohttp",
"anthropic",
"scylla-driver",
Expand Down
2 changes: 1 addition & 1 deletion trustgraph-ocr/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "TrustGraph provides a means to run a pipeline of flexible AI proc
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"trustgraph-base>=2.5,<2.6",
"trustgraph-base>=2.6,<2.7",
"pulsar-client",
"prometheus-client",
"boto3",
Expand Down
2 changes: 1 addition & 1 deletion trustgraph-unstructured/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "TrustGraph provides a means to run a pipeline of flexible AI proc
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"trustgraph-base>=2.5,<2.6",
"trustgraph-base>=2.6,<2.7",
"pulsar-client",
"prometheus-client",
"python-magic",
Expand Down
2 changes: 1 addition & 1 deletion trustgraph-vertexai/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "TrustGraph provides a means to run a pipeline of flexible AI proc
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"trustgraph-base>=2.5,<2.6",
"trustgraph-base>=2.6,<2.7",
"pulsar-client",
"google-genai",
"google-api-core",
Expand Down
14 changes: 7 additions & 7 deletions trustgraph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ description = "TrustGraph provides a means to run a pipeline of flexible AI proc
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"trustgraph-base>=2.5,<2.6",
"trustgraph-bedrock>=2.5,<2.6",
"trustgraph-cli>=2.5,<2.6",
"trustgraph-embeddings-hf>=2.5,<2.6",
"trustgraph-flow>=2.5,<2.6",
"trustgraph-unstructured>=2.5,<2.6",
"trustgraph-vertexai>=2.5,<2.6",
"trustgraph-base>=2.6,<2.7",
"trustgraph-bedrock>=2.6,<2.7",
"trustgraph-cli>=2.6,<2.7",
"trustgraph-embeddings-hf>=2.6,<2.7",
"trustgraph-flow>=2.6,<2.7",
"trustgraph-unstructured>=2.6,<2.7",
"trustgraph-vertexai>=2.6,<2.7",
]
classifiers = [
"Programming Language :: Python :: 3",
Expand Down
Loading