Skip to content

Commit

Permalink
Move to 0.12 deps in Python packages
Browse files Browse the repository at this point in the history
  • Loading branch information
cybermaggedon committed Oct 13, 2024
1 parent ffaf7b2 commit 4776b9f
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion trustgraph-bedrock/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base<0.12",
"trustgraph-base<0.13",
"pulsar-client",
"prometheus-client",
"boto3",
Expand Down
2 changes: 1 addition & 1 deletion trustgraph-cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base<0.12",
"trustgraph-base<0.13",
"requests",
"pulsar-client",
"rdflib",
Expand Down
4 changes: 2 additions & 2 deletions trustgraph-embeddings-hf/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base<0.12",
"trustgraph-flow<0.12",
"trustgraph-base<0.13",
"trustgraph-flow<0.13",
"torch",
"urllib3",
"transformers",
Expand Down
2 changes: 1 addition & 1 deletion trustgraph-flow/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base<0.12",
"trustgraph-base<0.13",
"urllib3",
"rdflib",
"pymilvus",
Expand Down
2 changes: 1 addition & 1 deletion trustgraph-parquet/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base<0.12",
"trustgraph-base<0.13",
"pulsar-client",
"prometheus-client",
"pyarrow",
Expand Down
2 changes: 1 addition & 1 deletion trustgraph-vertexai/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base<0.12",
"trustgraph-base<0.13",
"pulsar-client",
"google-cloud-aiplatform",
"prometheus-client",
Expand Down
14 changes: 7 additions & 7 deletions trustgraph/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base<0.12",
"trustgraph-bedrock<0.12",
"trustgraph-cli<0.12",
"trustgraph-embeddings-hf<0.12",
"trustgraph-flow<0.12",
"trustgraph-parquet<0.12",
"trustgraph-vertexai<0.12",
"trustgraph-base<0.13",
"trustgraph-bedrock<0.13",
"trustgraph-cli<0.13",
"trustgraph-embeddings-hf<0.13",
"trustgraph-flow<0.13",
"trustgraph-parquet<0.13",
"trustgraph-vertexai<0.13",
],
scripts=[
]
Expand Down

0 comments on commit 4776b9f

Please sign in to comment.