Prepare for 0.16: Change Python dep restrictions and Gitlab merge criteria

This commit is contained in:
Cyber MacGeddon 2024-11-20 19:55:05 +00:00
parent f2c78b701e
commit b536d78b57
8 changed files with 15 additions and 15 deletions

View file

@ -5,7 +5,7 @@ on:
workflow_dispatch: workflow_dispatch:
push: push:
tags: tags:
- v0.15.* - v0.16.*
permissions: permissions:
contents: read contents: read

View file

@ -34,7 +34,7 @@ setuptools.setup(
python_requires='>=3.8', python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[ install_requires=[
"trustgraph-base>=0.15,<0.16", "trustgraph-base>=0.16,<0.17",
"pulsar-client", "pulsar-client",
"prometheus-client", "prometheus-client",
"boto3", "boto3",

View file

@ -34,7 +34,7 @@ setuptools.setup(
python_requires='>=3.8', python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[ install_requires=[
"trustgraph-base>=0.15,<0.16", "trustgraph-base>=0.16,<0.17",
"requests", "requests",
"pulsar-client", "pulsar-client",
"rdflib", "rdflib",

View file

@ -34,8 +34,8 @@ setuptools.setup(
python_requires='>=3.8', python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[ install_requires=[
"trustgraph-base>=0.15,<0.16", "trustgraph-base>=0.16,<0.17",
"trustgraph-flow>=0.15,<0.16", "trustgraph-flow>=0.16,<0.17",
"torch", "torch",
"urllib3", "urllib3",
"transformers", "transformers",

View file

@ -34,7 +34,7 @@ setuptools.setup(
python_requires='>=3.8', python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[ install_requires=[
"trustgraph-base>=0.15,<0.16", "trustgraph-base>=0.16,<0.17",
"urllib3", "urllib3",
"rdflib", "rdflib",
"pymilvus", "pymilvus",

View file

@ -34,7 +34,7 @@ setuptools.setup(
python_requires='>=3.8', python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[ install_requires=[
"trustgraph-base>=0.15,<0.16", "trustgraph-base>=0.16,<0.17",
"pulsar-client", "pulsar-client",
"prometheus-client", "prometheus-client",
"pyarrow", "pyarrow",

View file

@ -34,7 +34,7 @@ setuptools.setup(
python_requires='>=3.8', python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[ install_requires=[
"trustgraph-base>=0.15,<0.16", "trustgraph-base>=0.16,<0.17",
"pulsar-client", "pulsar-client",
"google-cloud-aiplatform", "google-cloud-aiplatform",
"prometheus-client", "prometheus-client",

View file

@ -34,13 +34,13 @@ setuptools.setup(
python_requires='>=3.8', python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz", download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[ install_requires=[
"trustgraph-base>=0.15,<0.16", "trustgraph-base>=0.16,<0.17",
"trustgraph-bedrock>=0.15,<0.16", "trustgraph-bedrock>=0.16,<0.17",
"trustgraph-cli>=0.15,<0.16", "trustgraph-cli>=0.16,<0.17",
"trustgraph-embeddings-hf>=0.15,<0.16", "trustgraph-embeddings-hf>=0.16,<0.17",
"trustgraph-flow>=0.15,<0.16", "trustgraph-flow>=0.16,<0.17",
"trustgraph-parquet>=0.15,<0.16", "trustgraph-parquet>=0.16,<0.17",
"trustgraph-vertexai>=0.15,<0.16", "trustgraph-vertexai>=0.16,<0.17",
], ],
scripts=[ scripts=[
] ]