From 90b9ae8d9dacb9f53700dc80cd2f57b9f92db384 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Thu, 25 Jan 2024 09:46:12 +0100 Subject: [PATCH 01/24] first draft test commit, to be reverted Revert "test commit, to be reverted" This reverts commit b9997f7269ab79ea73347ccc763e33f28cf0691b. --- .github/workflows/readme_sync.yml | 55 +++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .github/workflows/readme_sync.yml diff --git a/.github/workflows/readme_sync.yml b/.github/workflows/readme_sync.yml new file mode 100644 index 000000000..079a4bb1f --- /dev/null +++ b/.github/workflows/readme_sync.yml @@ -0,0 +1,55 @@ +name: Sync docs with Readme + +on: + push: + branches: + - main + - massi/readme-sync + +jobs: + sync: + runs-on: ubuntu-latest + steps: + - name: Checkout this repo + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.10" + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -U haystack-pydoc-tools + + # We look into the changeset in order to understand + # which integrations were modified by the last commit. + - name: Get changed files + id: changed-files + uses: tj-actions/changed-files@v42 + with: + # Output unique changed directories instead of filenames + dir_names: true + + - name: Generate docs + env: + # This is necessary to fetch the documentation categories + # from Readme.io as we need them to associate the slug + # in config files with their id. + README_API_KEY: ${{ secrets.README_API_KEY }} + ALL_CHANGED_DIRS: ${{ steps.changed-files.outputs.all_changed_files }} + run: | + for d in "$ALL_CHANGED_DIRS"; do + echo "$d was changed" + done + + - name: Sync preview docs with 2.0 + # Sync the preview docs to the `2.0` version on Readme + id: sync-main + if: github.ref_name == 'main' && github.event_name == 'push' + uses: readmeio/rdme@8.3.1 + env: + README_API_KEY: ${{ secrets.README_API_KEY }} + with: + rdme: docs ./docs/pydoc/temp --key="$README_API_KEY" --version=2.0 From 1b8073b3cfc3f9954e1bf1b887dee35eab6f5829 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Thu, 25 Jan 2024 11:17:50 +0100 Subject: [PATCH 02/24] test commit, to be reverted fine tune action settings try try try try --- .github/workflows/{readme_sync.yml => CI_readme_sync.yml} | 8 +++++++- .../embedders/gradient/gradient_document_embedder.py | 3 +++ .../embedding_backend/instructor_backend.py | 3 +++ 3 files changed, 13 insertions(+), 1 deletion(-) rename .github/workflows/{readme_sync.yml => CI_readme_sync.yml} (83%) diff --git a/.github/workflows/readme_sync.yml b/.github/workflows/CI_readme_sync.yml similarity index 83% rename from .github/workflows/readme_sync.yml rename to .github/workflows/CI_readme_sync.yml index 079a4bb1f..545f6aa1e 100644 --- a/.github/workflows/readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -12,6 +12,9 @@ jobs: steps: - name: Checkout this repo uses: actions/checkout@v4 + with: + # This will tell tj-actions/changed-files to compare the current pushed commit with the latest in main + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v5 @@ -29,8 +32,11 @@ jobs: id: changed-files uses: tj-actions/changed-files@v42 with: + files: integrations/** # Output unique changed directories instead of filenames dir_names: true + # We only care about the name of the integration, i.e. integrations/FOO + dir_names_max_depth: 2 - name: Generate docs env: @@ -41,7 +47,7 @@ jobs: ALL_CHANGED_DIRS: ${{ steps.changed-files.outputs.all_changed_files }} run: | for d in "$ALL_CHANGED_DIRS"; do - echo "$d was changed" + printf %"s\n" $d done - name: Sync preview docs with 2.0 diff --git a/integrations/gradient/src/haystack_integrations/components/embedders/gradient/gradient_document_embedder.py b/integrations/gradient/src/haystack_integrations/components/embedders/gradient/gradient_document_embedder.py index 34fc1f87f..0ecfcbb98 100644 --- a/integrations/gradient/src/haystack_integrations/components/embedders/gradient/gradient_document_embedder.py +++ b/integrations/gradient/src/haystack_integrations/components/embedders/gradient/gradient_document_embedder.py @@ -127,3 +127,6 @@ def run(self, documents: List[Document]): doc.embedding = embedding return {"documents": documents} + + +# TEST! TO BE REMOVED diff --git a/integrations/instructor_embedders/src/haystack_integrations/components/embedders/instructor_embedders/embedding_backend/instructor_backend.py b/integrations/instructor_embedders/src/haystack_integrations/components/embedders/instructor_embedders/embedding_backend/instructor_backend.py index efe35e9b7..a22eaff32 100644 --- a/integrations/instructor_embedders/src/haystack_integrations/components/embedders/instructor_embedders/embedding_backend/instructor_backend.py +++ b/integrations/instructor_embedders/src/haystack_integrations/components/embedders/instructor_embedders/embedding_backend/instructor_backend.py @@ -42,3 +42,6 @@ def __init__( def embed(self, data: List[List[str]], **kwargs) -> List[List[float]]: embeddings = self.model.encode(data, **kwargs).tolist() return embeddings + + +# TEST! TO BE REMOVED From cf0a0240fc4a835d28de52f76507cbc4983b915a Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Thu, 25 Jan 2024 12:27:33 +0100 Subject: [PATCH 03/24] backup --- .github/workflows/CI_readme_sync.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index 545f6aa1e..6c7614b87 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -47,7 +47,9 @@ jobs: ALL_CHANGED_DIRS: ${{ steps.changed-files.outputs.all_changed_files }} run: | for d in "$ALL_CHANGED_DIRS"; do - printf %"s\n" $d + cd $d + hatch run docs + cd - done - name: Sync preview docs with 2.0 From 9f4683d57089d88ca99186514cbd62d178e17290 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Thu, 25 Jan 2024 19:13:41 +0100 Subject: [PATCH 04/24] revert --- .../embedders/gradient/gradient_document_embedder.py | 3 --- .../embedding_backend/instructor_backend.py | 3 --- 2 files changed, 6 deletions(-) diff --git a/integrations/gradient/src/haystack_integrations/components/embedders/gradient/gradient_document_embedder.py b/integrations/gradient/src/haystack_integrations/components/embedders/gradient/gradient_document_embedder.py index 0ecfcbb98..34fc1f87f 100644 --- a/integrations/gradient/src/haystack_integrations/components/embedders/gradient/gradient_document_embedder.py +++ b/integrations/gradient/src/haystack_integrations/components/embedders/gradient/gradient_document_embedder.py @@ -127,6 +127,3 @@ def run(self, documents: List[Document]): doc.embedding = embedding return {"documents": documents} - - -# TEST! TO BE REMOVED diff --git a/integrations/instructor_embedders/src/haystack_integrations/components/embedders/instructor_embedders/embedding_backend/instructor_backend.py b/integrations/instructor_embedders/src/haystack_integrations/components/embedders/instructor_embedders/embedding_backend/instructor_backend.py index a22eaff32..efe35e9b7 100644 --- a/integrations/instructor_embedders/src/haystack_integrations/components/embedders/instructor_embedders/embedding_backend/instructor_backend.py +++ b/integrations/instructor_embedders/src/haystack_integrations/components/embedders/instructor_embedders/embedding_backend/instructor_backend.py @@ -42,6 +42,3 @@ def __init__( def embed(self, data: List[List[str]], **kwargs) -> List[List[float]]: embeddings = self.model.encode(data, **kwargs).tolist() return embeddings - - -# TEST! TO BE REMOVED From ff037a5fb36405d49fe24ee4fb029adaf47f17e5 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Thu, 25 Jan 2024 19:23:33 +0100 Subject: [PATCH 05/24] test commit --- integrations/chroma/pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integrations/chroma/pyproject.toml b/integrations/chroma/pyproject.toml index 2653c491f..ae8bf150b 100644 --- a/integrations/chroma/pyproject.toml +++ b/integrations/chroma/pyproject.toml @@ -192,3 +192,5 @@ module = [ "pytest.*" ] ignore_missing_imports = true + +# Test Text From f17835726e79dfe5439bdfcdd18bded4ca33f14c Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Thu, 25 Jan 2024 19:25:01 +0100 Subject: [PATCH 06/24] install hatch --- .github/workflows/CI_readme_sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index 6c7614b87..e1713bdbe 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -24,7 +24,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -U haystack-pydoc-tools + pip install -U haystack-pydoc-tools hatch # We look into the changeset in order to understand # which integrations were modified by the last commit. From 92bccf18234305c3fefae70c96b202ad4cc53fb5 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Thu, 25 Jan 2024 19:26:57 +0100 Subject: [PATCH 07/24] test commit --- integrations/chroma/pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/integrations/chroma/pyproject.toml b/integrations/chroma/pyproject.toml index ae8bf150b..b978678e6 100644 --- a/integrations/chroma/pyproject.toml +++ b/integrations/chroma/pyproject.toml @@ -193,4 +193,3 @@ module = [ ] ignore_missing_imports = true -# Test Text From ef301ae1fff99578b4232c79d6e3e751c7c15720 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Thu, 25 Jan 2024 19:29:35 +0100 Subject: [PATCH 08/24] uniform workflow name --- .github/workflows/CI_readme_sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index e1713bdbe..e5918daf4 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -1,4 +1,4 @@ -name: Sync docs with Readme +name: Core / Sync docs with Readme on: push: From 79c368cd7ef602704f1e4d5eda63f892f5bfd2f7 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Thu, 25 Jan 2024 19:34:55 +0100 Subject: [PATCH 09/24] skip step if nothing changed --- .github/workflows/CI_readme_sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index e5918daf4..18cd7cf3e 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -39,6 +39,7 @@ jobs: dir_names_max_depth: 2 - name: Generate docs + if: steps.changed-files.outputs.all_changed_files != '' env: # This is necessary to fetch the documentation categories # from Readme.io as we need them to associate the slug From e84cafa172c81575082ccb474e80991b6ba72543 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 26 Jan 2024 12:29:14 +0100 Subject: [PATCH 10/24] sync with readme --- .github/workflows/CI_readme_sync.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index 18cd7cf3e..c7adef3ce 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -52,13 +52,13 @@ jobs: hatch run docs cd - done + mkdir tmp + find . -name "_readme_*.md" -exec cp "{}" tmp \; - name: Sync preview docs with 2.0 - # Sync the preview docs to the `2.0` version on Readme - id: sync-main - if: github.ref_name == 'main' && github.event_name == 'push' + if: steps.changed-files.outputs.all_changed_files != '' uses: readmeio/rdme@8.3.1 env: README_API_KEY: ${{ secrets.README_API_KEY }} with: - rdme: docs ./docs/pydoc/temp --key="$README_API_KEY" --version=2.0 + rdme: docs ./tmp --key="$README_API_KEY" --version=2.0 From 6ee0e3f599f9df232c68f3bd1ca74eb0b3cb9151 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 26 Jan 2024 12:31:54 +0100 Subject: [PATCH 11/24] revert --- integrations/chroma/pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/integrations/chroma/pyproject.toml b/integrations/chroma/pyproject.toml index b978678e6..2653c491f 100644 --- a/integrations/chroma/pyproject.toml +++ b/integrations/chroma/pyproject.toml @@ -192,4 +192,3 @@ module = [ "pytest.*" ] ignore_missing_imports = true - From cb4cb8c30ba8b6624b4135b24c9edcd9b19aa369 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 26 Jan 2024 12:35:21 +0100 Subject: [PATCH 12/24] final touches --- .github/workflows/CI_readme_sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index c7adef3ce..6c310a132 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - massi/readme-sync jobs: sync: @@ -54,6 +53,7 @@ jobs: done mkdir tmp find . -name "_readme_*.md" -exec cp "{}" tmp \; + ls tmp - name: Sync preview docs with 2.0 if: steps.changed-files.outputs.all_changed_files != '' From fb3db4e16b74035209d6ed0bf43d5aace39e0612 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 9 Feb 2024 09:16:18 +0100 Subject: [PATCH 13/24] Update .github/workflows/CI_readme_sync.yml Co-authored-by: Madeesh Kannan --- .github/workflows/CI_readme_sync.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index 6c310a132..e868734e5 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -47,9 +47,7 @@ jobs: ALL_CHANGED_DIRS: ${{ steps.changed-files.outputs.all_changed_files }} run: | for d in "$ALL_CHANGED_DIRS"; do - cd $d - hatch run docs - cd - + (cd $d; hatch run docs) done mkdir tmp find . -name "_readme_*.md" -exec cp "{}" tmp \; From 0e884e9d776c3489272c7a74a5828137c1aecad1 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 9 Feb 2024 09:22:25 +0100 Subject: [PATCH 14/24] test workflow, revert before merge --- .github/workflows/CI_readme_sync.yml | 1 + integrations/amazon_bedrock/pyproject.toml | 2 +- integrations/astra/pyproject.toml | 2 +- integrations/chroma/pyproject.toml | 2 +- integrations/cohere/pyproject.toml | 2 +- integrations/elasticsearch/pyproject.toml | 2 +- integrations/google_ai/pyproject.toml | 2 +- integrations/google_vertex/pyproject.toml | 2 +- integrations/gradient/pyproject.toml | 2 +- integrations/instructor_embedders/pyproject.toml | 2 +- integrations/jina/pyproject.toml | 2 +- integrations/llama_cpp/pyproject.toml | 2 +- integrations/ollama/pyproject.toml | 2 +- integrations/opensearch/pyproject.toml | 2 +- integrations/pgvector/pyproject.toml | 2 +- integrations/pinecone/pyproject.toml | 2 +- integrations/qdrant/pyproject.toml | 2 +- integrations/unstructured/pyproject.toml | 2 +- integrations/weaviate/pyproject.toml | 2 +- 19 files changed, 19 insertions(+), 18 deletions(-) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index e868734e5..705274777 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - massi/readme-sync jobs: sync: diff --git a/integrations/amazon_bedrock/pyproject.toml b/integrations/amazon_bedrock/pyproject.toml index 8527d27a1..ec0de37de 100644 --- a/integrations/amazon_bedrock/pyproject.toml +++ b/integrations/amazon_bedrock/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/astra/pyproject.toml b/integrations/astra/pyproject.toml index 7599797a8..f9d8bb72a 100644 --- a/integrations/astra/pyproject.toml +++ b/integrations/astra/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/chroma/pyproject.toml b/integrations/chroma/pyproject.toml index 2653c491f..8a55de002 100644 --- a/integrations/chroma/pyproject.toml +++ b/integrations/chroma/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", diff --git a/integrations/cohere/pyproject.toml b/integrations/cohere/pyproject.toml index 332471674..daf35a979 100644 --- a/integrations/cohere/pyproject.toml +++ b/integrations/cohere/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/elasticsearch/pyproject.toml b/integrations/elasticsearch/pyproject.toml index b67df7e03..7a6931f2b 100644 --- a/integrations/elasticsearch/pyproject.toml +++ b/integrations/elasticsearch/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/google_ai/pyproject.toml b/integrations/google_ai/pyproject.toml index ced2310dd..672f7a866 100644 --- a/integrations/google_ai/pyproject.toml +++ b/integrations/google_ai/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/google_vertex/pyproject.toml b/integrations/google_vertex/pyproject.toml index f846d5bc4..21c5c629b 100644 --- a/integrations/google_vertex/pyproject.toml +++ b/integrations/google_vertex/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/gradient/pyproject.toml b/integrations/gradient/pyproject.toml index 51919f149..a90f1891a 100644 --- a/integrations/gradient/pyproject.toml +++ b/integrations/gradient/pyproject.toml @@ -17,7 +17,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/instructor_embedders/pyproject.toml b/integrations/instructor_embedders/pyproject.toml index 24e69ce59..0fa0a9c60 100644 --- a/integrations/instructor_embedders/pyproject.toml +++ b/integrations/instructor_embedders/pyproject.toml @@ -13,7 +13,7 @@ keywords = [] authors = [{ name = "deepset GmbH", email = "info@deepset.ai" }] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/jina/pyproject.toml b/integrations/jina/pyproject.toml index 565def7a5..544208e65 100644 --- a/integrations/jina/pyproject.toml +++ b/integrations/jina/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/llama_cpp/pyproject.toml b/integrations/llama_cpp/pyproject.toml index 1b165dcaf..63d244c93 100644 --- a/integrations/llama_cpp/pyproject.toml +++ b/integrations/llama_cpp/pyproject.toml @@ -16,7 +16,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/ollama/pyproject.toml b/integrations/ollama/pyproject.toml index e3bb738b6..6366c47c4 100644 --- a/integrations/ollama/pyproject.toml +++ b/integrations/ollama/pyproject.toml @@ -17,7 +17,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/opensearch/pyproject.toml b/integrations/opensearch/pyproject.toml index 794fa73fa..8779c3f08 100644 --- a/integrations/opensearch/pyproject.toml +++ b/integrations/opensearch/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/pgvector/pyproject.toml b/integrations/pgvector/pyproject.toml index 65ded967f..dccb2fc79 100644 --- a/integrations/pgvector/pyproject.toml +++ b/integrations/pgvector/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/pinecone/pyproject.toml b/integrations/pinecone/pyproject.toml index f7dbe8df9..60cbc56db 100644 --- a/integrations/pinecone/pyproject.toml +++ b/integrations/pinecone/pyproject.toml @@ -13,7 +13,7 @@ keywords = [] authors = [{ name = "deepset GmbH", email = "info@deepset.ai" }] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/qdrant/pyproject.toml b/integrations/qdrant/pyproject.toml index 58a3534c4..b65ff2130 100644 --- a/integrations/qdrant/pyproject.toml +++ b/integrations/qdrant/pyproject.toml @@ -16,7 +16,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/unstructured/pyproject.toml b/integrations/unstructured/pyproject.toml index 7366a8adf..a845e0f3b 100644 --- a/integrations/unstructured/pyproject.toml +++ b/integrations/unstructured/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/weaviate/pyproject.toml b/integrations/weaviate/pyproject.toml index fb132516c..794c49665 100644 --- a/integrations/weaviate/pyproject.toml +++ b/integrations/weaviate/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", From 465cde0a2db68be72e08209f44039b7e52c06cfb Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 9 Feb 2024 09:27:30 +0100 Subject: [PATCH 15/24] revert script optimization --- .github/workflows/CI_readme_sync.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index 705274777..a4c6f7fc2 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -48,7 +48,9 @@ jobs: ALL_CHANGED_DIRS: ${{ steps.changed-files.outputs.all_changed_files }} run: | for d in "$ALL_CHANGED_DIRS"; do - (cd $d; hatch run docs) + cd $d + hatch run docs + cd - done mkdir tmp find . -name "_readme_*.md" -exec cp "{}" tmp \; From 711db4d10802a32a097995271abc008efd5727dc Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 9 Feb 2024 09:43:23 +0100 Subject: [PATCH 16/24] Revert "test workflow, revert before merge" This reverts commit 3538b01b14ea3354fba4bd49ef1ed57f63f884a5. --- .github/workflows/CI_readme_sync.yml | 1 - integrations/amazon_bedrock/pyproject.toml | 2 +- integrations/astra/pyproject.toml | 2 +- integrations/chroma/pyproject.toml | 2 +- integrations/cohere/pyproject.toml | 2 +- integrations/elasticsearch/pyproject.toml | 2 +- integrations/google_ai/pyproject.toml | 2 +- integrations/google_vertex/pyproject.toml | 2 +- integrations/gradient/pyproject.toml | 2 +- integrations/instructor_embedders/pyproject.toml | 2 +- integrations/jina/pyproject.toml | 2 +- integrations/llama_cpp/pyproject.toml | 2 +- integrations/ollama/pyproject.toml | 2 +- integrations/opensearch/pyproject.toml | 2 +- integrations/pgvector/pyproject.toml | 2 +- integrations/pinecone/pyproject.toml | 2 +- integrations/qdrant/pyproject.toml | 2 +- integrations/unstructured/pyproject.toml | 2 +- integrations/weaviate/pyproject.toml | 2 +- 19 files changed, 18 insertions(+), 19 deletions(-) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index a4c6f7fc2..6c310a132 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - massi/readme-sync jobs: sync: diff --git a/integrations/amazon_bedrock/pyproject.toml b/integrations/amazon_bedrock/pyproject.toml index ec0de37de..8527d27a1 100644 --- a/integrations/amazon_bedrock/pyproject.toml +++ b/integrations/amazon_bedrock/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/astra/pyproject.toml b/integrations/astra/pyproject.toml index f9d8bb72a..7599797a8 100644 --- a/integrations/astra/pyproject.toml +++ b/integrations/astra/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/chroma/pyproject.toml b/integrations/chroma/pyproject.toml index 8a55de002..2653c491f 100644 --- a/integrations/chroma/pyproject.toml +++ b/integrations/chroma/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", diff --git a/integrations/cohere/pyproject.toml b/integrations/cohere/pyproject.toml index daf35a979..332471674 100644 --- a/integrations/cohere/pyproject.toml +++ b/integrations/cohere/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/elasticsearch/pyproject.toml b/integrations/elasticsearch/pyproject.toml index 7a6931f2b..b67df7e03 100644 --- a/integrations/elasticsearch/pyproject.toml +++ b/integrations/elasticsearch/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/google_ai/pyproject.toml b/integrations/google_ai/pyproject.toml index 672f7a866..ced2310dd 100644 --- a/integrations/google_ai/pyproject.toml +++ b/integrations/google_ai/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/google_vertex/pyproject.toml b/integrations/google_vertex/pyproject.toml index 21c5c629b..f846d5bc4 100644 --- a/integrations/google_vertex/pyproject.toml +++ b/integrations/google_vertex/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/gradient/pyproject.toml b/integrations/gradient/pyproject.toml index a90f1891a..51919f149 100644 --- a/integrations/gradient/pyproject.toml +++ b/integrations/gradient/pyproject.toml @@ -17,7 +17,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/instructor_embedders/pyproject.toml b/integrations/instructor_embedders/pyproject.toml index 0fa0a9c60..24e69ce59 100644 --- a/integrations/instructor_embedders/pyproject.toml +++ b/integrations/instructor_embedders/pyproject.toml @@ -13,7 +13,7 @@ keywords = [] authors = [{ name = "deepset GmbH", email = "info@deepset.ai" }] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/jina/pyproject.toml b/integrations/jina/pyproject.toml index 544208e65..565def7a5 100644 --- a/integrations/jina/pyproject.toml +++ b/integrations/jina/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/llama_cpp/pyproject.toml b/integrations/llama_cpp/pyproject.toml index 63d244c93..1b165dcaf 100644 --- a/integrations/llama_cpp/pyproject.toml +++ b/integrations/llama_cpp/pyproject.toml @@ -16,7 +16,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/ollama/pyproject.toml b/integrations/ollama/pyproject.toml index 6366c47c4..e3bb738b6 100644 --- a/integrations/ollama/pyproject.toml +++ b/integrations/ollama/pyproject.toml @@ -17,7 +17,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/opensearch/pyproject.toml b/integrations/opensearch/pyproject.toml index 8779c3f08..794fa73fa 100644 --- a/integrations/opensearch/pyproject.toml +++ b/integrations/opensearch/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/pgvector/pyproject.toml b/integrations/pgvector/pyproject.toml index dccb2fc79..65ded967f 100644 --- a/integrations/pgvector/pyproject.toml +++ b/integrations/pgvector/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/pinecone/pyproject.toml b/integrations/pinecone/pyproject.toml index 60cbc56db..f7dbe8df9 100644 --- a/integrations/pinecone/pyproject.toml +++ b/integrations/pinecone/pyproject.toml @@ -13,7 +13,7 @@ keywords = [] authors = [{ name = "deepset GmbH", email = "info@deepset.ai" }] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/qdrant/pyproject.toml b/integrations/qdrant/pyproject.toml index b65ff2130..58a3534c4 100644 --- a/integrations/qdrant/pyproject.toml +++ b/integrations/qdrant/pyproject.toml @@ -16,7 +16,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/unstructured/pyproject.toml b/integrations/unstructured/pyproject.toml index a845e0f3b..7366a8adf 100644 --- a/integrations/unstructured/pyproject.toml +++ b/integrations/unstructured/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/weaviate/pyproject.toml b/integrations/weaviate/pyproject.toml index 794c49665..fb132516c 100644 --- a/integrations/weaviate/pyproject.toml +++ b/integrations/weaviate/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", From 1fc5fe8096b46d12bd2e1c781769409ed8639424 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 9 Feb 2024 09:44:19 +0100 Subject: [PATCH 17/24] test --- .github/workflows/CI_readme_sync.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index 6c310a132..a4c6f7fc2 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - massi/readme-sync jobs: sync: From 0c3b7d075c39e0f55964470b9cab6db8481584ec Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 9 Feb 2024 11:46:26 +0100 Subject: [PATCH 18/24] reintroduce optimization --- .github/workflows/CI_readme_sync.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index a4c6f7fc2..859b78567 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -47,10 +47,8 @@ jobs: README_API_KEY: ${{ secrets.README_API_KEY }} ALL_CHANGED_DIRS: ${{ steps.changed-files.outputs.all_changed_files }} run: | - for d in "$ALL_CHANGED_DIRS"; do - cd $d - hatch run docs - cd - + for d in $ALL_CHANGED_DIRS; do + (cd $d; hatch run docs) done mkdir tmp find . -name "_readme_*.md" -exec cp "{}" tmp \; From 0a3209caac94ddb57ed231c5c39f1f6342626910 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 9 Feb 2024 11:58:02 +0100 Subject: [PATCH 19/24] to be reverted --- integrations/amazon_bedrock/pyproject.toml | 2 +- integrations/astra/pyproject.toml | 2 +- integrations/chroma/pyproject.toml | 2 +- integrations/cohere/pyproject.toml | 2 +- integrations/elasticsearch/pyproject.toml | 2 +- integrations/google_ai/pyproject.toml | 2 +- integrations/google_vertex/pyproject.toml | 2 +- integrations/gradient/pyproject.toml | 2 +- integrations/instructor_embedders/pyproject.toml | 2 +- integrations/jina/pyproject.toml | 2 +- integrations/llama_cpp/pyproject.toml | 2 +- integrations/ollama/pyproject.toml | 2 +- integrations/opensearch/pyproject.toml | 2 +- integrations/pgvector/pyproject.toml | 2 +- integrations/pinecone/pyproject.toml | 2 +- integrations/qdrant/pyproject.toml | 2 +- integrations/unstructured/pyproject.toml | 2 +- integrations/weaviate/pyproject.toml | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/integrations/amazon_bedrock/pyproject.toml b/integrations/amazon_bedrock/pyproject.toml index 8527d27a1..ec0de37de 100644 --- a/integrations/amazon_bedrock/pyproject.toml +++ b/integrations/amazon_bedrock/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/astra/pyproject.toml b/integrations/astra/pyproject.toml index 7599797a8..f9d8bb72a 100644 --- a/integrations/astra/pyproject.toml +++ b/integrations/astra/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/chroma/pyproject.toml b/integrations/chroma/pyproject.toml index 2653c491f..8a55de002 100644 --- a/integrations/chroma/pyproject.toml +++ b/integrations/chroma/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", diff --git a/integrations/cohere/pyproject.toml b/integrations/cohere/pyproject.toml index 332471674..daf35a979 100644 --- a/integrations/cohere/pyproject.toml +++ b/integrations/cohere/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/elasticsearch/pyproject.toml b/integrations/elasticsearch/pyproject.toml index b67df7e03..7a6931f2b 100644 --- a/integrations/elasticsearch/pyproject.toml +++ b/integrations/elasticsearch/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/google_ai/pyproject.toml b/integrations/google_ai/pyproject.toml index ced2310dd..672f7a866 100644 --- a/integrations/google_ai/pyproject.toml +++ b/integrations/google_ai/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/google_vertex/pyproject.toml b/integrations/google_vertex/pyproject.toml index f846d5bc4..21c5c629b 100644 --- a/integrations/google_vertex/pyproject.toml +++ b/integrations/google_vertex/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/gradient/pyproject.toml b/integrations/gradient/pyproject.toml index 51919f149..a90f1891a 100644 --- a/integrations/gradient/pyproject.toml +++ b/integrations/gradient/pyproject.toml @@ -17,7 +17,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/instructor_embedders/pyproject.toml b/integrations/instructor_embedders/pyproject.toml index 24e69ce59..0fa0a9c60 100644 --- a/integrations/instructor_embedders/pyproject.toml +++ b/integrations/instructor_embedders/pyproject.toml @@ -13,7 +13,7 @@ keywords = [] authors = [{ name = "deepset GmbH", email = "info@deepset.ai" }] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/jina/pyproject.toml b/integrations/jina/pyproject.toml index 565def7a5..544208e65 100644 --- a/integrations/jina/pyproject.toml +++ b/integrations/jina/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/llama_cpp/pyproject.toml b/integrations/llama_cpp/pyproject.toml index 1b165dcaf..63d244c93 100644 --- a/integrations/llama_cpp/pyproject.toml +++ b/integrations/llama_cpp/pyproject.toml @@ -16,7 +16,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/ollama/pyproject.toml b/integrations/ollama/pyproject.toml index e3bb738b6..6366c47c4 100644 --- a/integrations/ollama/pyproject.toml +++ b/integrations/ollama/pyproject.toml @@ -17,7 +17,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/opensearch/pyproject.toml b/integrations/opensearch/pyproject.toml index 794fa73fa..8779c3f08 100644 --- a/integrations/opensearch/pyproject.toml +++ b/integrations/opensearch/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/pgvector/pyproject.toml b/integrations/pgvector/pyproject.toml index 65ded967f..dccb2fc79 100644 --- a/integrations/pgvector/pyproject.toml +++ b/integrations/pgvector/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/pinecone/pyproject.toml b/integrations/pinecone/pyproject.toml index f7dbe8df9..60cbc56db 100644 --- a/integrations/pinecone/pyproject.toml +++ b/integrations/pinecone/pyproject.toml @@ -13,7 +13,7 @@ keywords = [] authors = [{ name = "deepset GmbH", email = "info@deepset.ai" }] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/qdrant/pyproject.toml b/integrations/qdrant/pyproject.toml index 58a3534c4..b65ff2130 100644 --- a/integrations/qdrant/pyproject.toml +++ b/integrations/qdrant/pyproject.toml @@ -16,7 +16,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/unstructured/pyproject.toml b/integrations/unstructured/pyproject.toml index 7366a8adf..a845e0f3b 100644 --- a/integrations/unstructured/pyproject.toml +++ b/integrations/unstructured/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/weaviate/pyproject.toml b/integrations/weaviate/pyproject.toml index fb132516c..794c49665 100644 --- a/integrations/weaviate/pyproject.toml +++ b/integrations/weaviate/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python", + "Programming Language :: Python ::", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", From 4a9f23419fffa1a315cdef7fb245f6df028213bc Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 9 Feb 2024 12:11:45 +0100 Subject: [PATCH 20/24] revert --- integrations/amazon_bedrock/pyproject.toml | 2 +- integrations/astra/pyproject.toml | 2 +- integrations/chroma/pyproject.toml | 2 +- integrations/cohere/pyproject.toml | 2 +- integrations/elasticsearch/pyproject.toml | 2 +- integrations/google_ai/pyproject.toml | 2 +- integrations/google_vertex/pyproject.toml | 2 +- integrations/gradient/pyproject.toml | 2 +- integrations/instructor_embedders/pyproject.toml | 2 +- integrations/jina/pyproject.toml | 2 +- integrations/llama_cpp/pyproject.toml | 2 +- integrations/ollama/pyproject.toml | 2 +- integrations/opensearch/pyproject.toml | 2 +- integrations/pgvector/pyproject.toml | 2 +- integrations/pinecone/pyproject.toml | 2 +- integrations/qdrant/pyproject.toml | 2 +- integrations/unstructured/pyproject.toml | 2 +- integrations/weaviate/pyproject.toml | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/integrations/amazon_bedrock/pyproject.toml b/integrations/amazon_bedrock/pyproject.toml index ec0de37de..8527d27a1 100644 --- a/integrations/amazon_bedrock/pyproject.toml +++ b/integrations/amazon_bedrock/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/astra/pyproject.toml b/integrations/astra/pyproject.toml index f9d8bb72a..7599797a8 100644 --- a/integrations/astra/pyproject.toml +++ b/integrations/astra/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/chroma/pyproject.toml b/integrations/chroma/pyproject.toml index 8a55de002..2653c491f 100644 --- a/integrations/chroma/pyproject.toml +++ b/integrations/chroma/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", diff --git a/integrations/cohere/pyproject.toml b/integrations/cohere/pyproject.toml index daf35a979..332471674 100644 --- a/integrations/cohere/pyproject.toml +++ b/integrations/cohere/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/elasticsearch/pyproject.toml b/integrations/elasticsearch/pyproject.toml index 7a6931f2b..b67df7e03 100644 --- a/integrations/elasticsearch/pyproject.toml +++ b/integrations/elasticsearch/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/google_ai/pyproject.toml b/integrations/google_ai/pyproject.toml index 672f7a866..ced2310dd 100644 --- a/integrations/google_ai/pyproject.toml +++ b/integrations/google_ai/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/google_vertex/pyproject.toml b/integrations/google_vertex/pyproject.toml index 21c5c629b..f846d5bc4 100644 --- a/integrations/google_vertex/pyproject.toml +++ b/integrations/google_vertex/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/gradient/pyproject.toml b/integrations/gradient/pyproject.toml index a90f1891a..51919f149 100644 --- a/integrations/gradient/pyproject.toml +++ b/integrations/gradient/pyproject.toml @@ -17,7 +17,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/instructor_embedders/pyproject.toml b/integrations/instructor_embedders/pyproject.toml index 0fa0a9c60..24e69ce59 100644 --- a/integrations/instructor_embedders/pyproject.toml +++ b/integrations/instructor_embedders/pyproject.toml @@ -13,7 +13,7 @@ keywords = [] authors = [{ name = "deepset GmbH", email = "info@deepset.ai" }] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/jina/pyproject.toml b/integrations/jina/pyproject.toml index 544208e65..565def7a5 100644 --- a/integrations/jina/pyproject.toml +++ b/integrations/jina/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/llama_cpp/pyproject.toml b/integrations/llama_cpp/pyproject.toml index 63d244c93..1b165dcaf 100644 --- a/integrations/llama_cpp/pyproject.toml +++ b/integrations/llama_cpp/pyproject.toml @@ -16,7 +16,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/ollama/pyproject.toml b/integrations/ollama/pyproject.toml index 6366c47c4..e3bb738b6 100644 --- a/integrations/ollama/pyproject.toml +++ b/integrations/ollama/pyproject.toml @@ -17,7 +17,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/opensearch/pyproject.toml b/integrations/opensearch/pyproject.toml index 8779c3f08..794fa73fa 100644 --- a/integrations/opensearch/pyproject.toml +++ b/integrations/opensearch/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/pgvector/pyproject.toml b/integrations/pgvector/pyproject.toml index dccb2fc79..65ded967f 100644 --- a/integrations/pgvector/pyproject.toml +++ b/integrations/pgvector/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/pinecone/pyproject.toml b/integrations/pinecone/pyproject.toml index 60cbc56db..f7dbe8df9 100644 --- a/integrations/pinecone/pyproject.toml +++ b/integrations/pinecone/pyproject.toml @@ -13,7 +13,7 @@ keywords = [] authors = [{ name = "deepset GmbH", email = "info@deepset.ai" }] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/qdrant/pyproject.toml b/integrations/qdrant/pyproject.toml index b65ff2130..58a3534c4 100644 --- a/integrations/qdrant/pyproject.toml +++ b/integrations/qdrant/pyproject.toml @@ -16,7 +16,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/unstructured/pyproject.toml b/integrations/unstructured/pyproject.toml index a845e0f3b..7366a8adf 100644 --- a/integrations/unstructured/pyproject.toml +++ b/integrations/unstructured/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/weaviate/pyproject.toml b/integrations/weaviate/pyproject.toml index 794c49665..fb132516c 100644 --- a/integrations/weaviate/pyproject.toml +++ b/integrations/weaviate/pyproject.toml @@ -15,7 +15,7 @@ authors = [ ] classifiers = [ "Development Status :: 4 - Beta", - "Programming Language :: Python ::", + "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", From 96768fb40ce97e690c1718b5f817afe92c54f2e5 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 9 Feb 2024 12:15:02 +0100 Subject: [PATCH 21/24] try --- .github/workflows/CI_readme_sync.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index 859b78567..5f6ae6fb5 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -48,7 +48,9 @@ jobs: ALL_CHANGED_DIRS: ${{ steps.changed-files.outputs.all_changed_files }} run: | for d in $ALL_CHANGED_DIRS; do - (cd $d; hatch run docs) + cd $d + hatch run docs + cd - done mkdir tmp find . -name "_readme_*.md" -exec cp "{}" tmp \; From 25c30b3eb541c76b41d8a272204e1dcac2f63bb1 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 9 Feb 2024 12:17:23 +0100 Subject: [PATCH 22/24] test --- integrations/amazon_bedrock/pyproject.toml | 2 +- integrations/astra/pyproject.toml | 2 +- integrations/chroma/pyproject.toml | 2 +- integrations/cohere/pyproject.toml | 2 +- integrations/elasticsearch/pyproject.toml | 2 +- integrations/google_ai/pyproject.toml | 2 +- integrations/google_vertex/pyproject.toml | 2 +- integrations/gradient/pyproject.toml | 2 +- integrations/instructor_embedders/pyproject.toml | 2 +- integrations/jina/pyproject.toml | 2 +- integrations/llama_cpp/pyproject.toml | 2 +- integrations/ollama/pyproject.toml | 2 +- integrations/opensearch/pyproject.toml | 2 +- integrations/pgvector/pyproject.toml | 2 +- integrations/pinecone/pyproject.toml | 2 +- integrations/qdrant/pyproject.toml | 2 +- integrations/unstructured/pyproject.toml | 2 +- integrations/weaviate/pyproject.toml | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/integrations/amazon_bedrock/pyproject.toml b/integrations/amazon_bedrock/pyproject.toml index 8527d27a1..09d0ed368 100644 --- a/integrations/amazon_bedrock/pyproject.toml +++ b/integrations/amazon_bedrock/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/astra/pyproject.toml b/integrations/astra/pyproject.toml index 7599797a8..e570a1c4b 100644 --- a/integrations/astra/pyproject.toml +++ b/integrations/astra/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "Anant Corporation", email = "support@anant.us" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/chroma/pyproject.toml b/integrations/chroma/pyproject.toml index 2653c491f..e38f13eea 100644 --- a/integrations/chroma/pyproject.toml +++ b/integrations/chroma/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "John Doe", email = "jd@example.com" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/cohere/pyproject.toml b/integrations/cohere/pyproject.toml index 332471674..1aea286c8 100644 --- a/integrations/cohere/pyproject.toml +++ b/integrations/cohere/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/elasticsearch/pyproject.toml b/integrations/elasticsearch/pyproject.toml index b67df7e03..5f153c9c8 100644 --- a/integrations/elasticsearch/pyproject.toml +++ b/integrations/elasticsearch/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "Silvano Cerza", email = "silvanocerza@gmail.com" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/google_ai/pyproject.toml b/integrations/google_ai/pyproject.toml index ced2310dd..93650cf21 100644 --- a/integrations/google_ai/pyproject.toml +++ b/integrations/google_ai/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/google_vertex/pyproject.toml b/integrations/google_vertex/pyproject.toml index f846d5bc4..243279269 100644 --- a/integrations/google_vertex/pyproject.toml +++ b/integrations/google_vertex/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/gradient/pyproject.toml b/integrations/gradient/pyproject.toml index 51919f149..60462b756 100644 --- a/integrations/gradient/pyproject.toml +++ b/integrations/gradient/pyproject.toml @@ -16,7 +16,7 @@ authors = [ { name = "Hayden Wilson", email = "contact@gradient.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/instructor_embedders/pyproject.toml b/integrations/instructor_embedders/pyproject.toml index 24e69ce59..ea67c278d 100644 --- a/integrations/instructor_embedders/pyproject.toml +++ b/integrations/instructor_embedders/pyproject.toml @@ -12,7 +12,7 @@ license = "Apache-2.0" keywords = [] authors = [{ name = "deepset GmbH", email = "info@deepset.ai" }] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/jina/pyproject.toml b/integrations/jina/pyproject.toml index 565def7a5..d0891c4fa 100644 --- a/integrations/jina/pyproject.toml +++ b/integrations/jina/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "Joan Fontanals Martinez", email = "joan.fontanals.martinez@jina.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/llama_cpp/pyproject.toml b/integrations/llama_cpp/pyproject.toml index 1b165dcaf..19824589a 100644 --- a/integrations/llama_cpp/pyproject.toml +++ b/integrations/llama_cpp/pyproject.toml @@ -15,7 +15,7 @@ authors = [ { name = "Ashwin Mathur", email = "" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/ollama/pyproject.toml b/integrations/ollama/pyproject.toml index e3bb738b6..6eac6c60c 100644 --- a/integrations/ollama/pyproject.toml +++ b/integrations/ollama/pyproject.toml @@ -16,7 +16,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/opensearch/pyproject.toml b/integrations/opensearch/pyproject.toml index 794fa73fa..11a32f100 100644 --- a/integrations/opensearch/pyproject.toml +++ b/integrations/opensearch/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/pgvector/pyproject.toml b/integrations/pgvector/pyproject.toml index 65ded967f..20e4c1f90 100644 --- a/integrations/pgvector/pyproject.toml +++ b/integrations/pgvector/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/pinecone/pyproject.toml b/integrations/pinecone/pyproject.toml index f7dbe8df9..ad4ec081a 100644 --- a/integrations/pinecone/pyproject.toml +++ b/integrations/pinecone/pyproject.toml @@ -12,7 +12,7 @@ license = "Apache-2.0" keywords = [] authors = [{ name = "deepset GmbH", email = "info@deepset.ai" }] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/qdrant/pyproject.toml b/integrations/qdrant/pyproject.toml index 58a3534c4..466f989f5 100644 --- a/integrations/qdrant/pyproject.toml +++ b/integrations/qdrant/pyproject.toml @@ -15,7 +15,7 @@ authors = [ { name = "Anush Shetty", email = "anush.shetty@qdrant.com" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/unstructured/pyproject.toml b/integrations/unstructured/pyproject.toml index 7366a8adf..a3ad71d29 100644 --- a/integrations/unstructured/pyproject.toml +++ b/integrations/unstructured/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/weaviate/pyproject.toml b/integrations/weaviate/pyproject.toml index fb132516c..563f7bcdb 100644 --- a/integrations/weaviate/pyproject.toml +++ b/integrations/weaviate/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 4 - Beta ", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", From a8d89641dd7238f26d5ebfb002113dedf07749fd Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 9 Feb 2024 12:19:13 +0100 Subject: [PATCH 23/24] test --- integrations/amazon_bedrock/pyproject.toml | 2 +- integrations/astra/pyproject.toml | 2 +- integrations/chroma/pyproject.toml | 2 +- integrations/cohere/pyproject.toml | 2 +- integrations/elasticsearch/pyproject.toml | 2 +- integrations/google_ai/pyproject.toml | 2 +- integrations/google_vertex/pyproject.toml | 2 +- integrations/gradient/pyproject.toml | 2 +- integrations/instructor_embedders/pyproject.toml | 2 +- integrations/jina/pyproject.toml | 2 +- integrations/llama_cpp/pyproject.toml | 2 +- integrations/ollama/pyproject.toml | 2 +- integrations/opensearch/pyproject.toml | 2 +- integrations/pgvector/pyproject.toml | 2 +- integrations/pinecone/pyproject.toml | 2 +- integrations/qdrant/pyproject.toml | 2 +- integrations/unstructured/pyproject.toml | 2 +- integrations/weaviate/pyproject.toml | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/integrations/amazon_bedrock/pyproject.toml b/integrations/amazon_bedrock/pyproject.toml index 09d0ed368..8527d27a1 100644 --- a/integrations/amazon_bedrock/pyproject.toml +++ b/integrations/amazon_bedrock/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/astra/pyproject.toml b/integrations/astra/pyproject.toml index e570a1c4b..7599797a8 100644 --- a/integrations/astra/pyproject.toml +++ b/integrations/astra/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "Anant Corporation", email = "support@anant.us" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/chroma/pyproject.toml b/integrations/chroma/pyproject.toml index e38f13eea..2653c491f 100644 --- a/integrations/chroma/pyproject.toml +++ b/integrations/chroma/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "John Doe", email = "jd@example.com" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/integrations/cohere/pyproject.toml b/integrations/cohere/pyproject.toml index 1aea286c8..332471674 100644 --- a/integrations/cohere/pyproject.toml +++ b/integrations/cohere/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/elasticsearch/pyproject.toml b/integrations/elasticsearch/pyproject.toml index 5f153c9c8..b67df7e03 100644 --- a/integrations/elasticsearch/pyproject.toml +++ b/integrations/elasticsearch/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "Silvano Cerza", email = "silvanocerza@gmail.com" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/google_ai/pyproject.toml b/integrations/google_ai/pyproject.toml index 93650cf21..ced2310dd 100644 --- a/integrations/google_ai/pyproject.toml +++ b/integrations/google_ai/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/google_vertex/pyproject.toml b/integrations/google_vertex/pyproject.toml index 243279269..f846d5bc4 100644 --- a/integrations/google_vertex/pyproject.toml +++ b/integrations/google_vertex/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/gradient/pyproject.toml b/integrations/gradient/pyproject.toml index 60462b756..51919f149 100644 --- a/integrations/gradient/pyproject.toml +++ b/integrations/gradient/pyproject.toml @@ -16,7 +16,7 @@ authors = [ { name = "Hayden Wilson", email = "contact@gradient.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/instructor_embedders/pyproject.toml b/integrations/instructor_embedders/pyproject.toml index ea67c278d..24e69ce59 100644 --- a/integrations/instructor_embedders/pyproject.toml +++ b/integrations/instructor_embedders/pyproject.toml @@ -12,7 +12,7 @@ license = "Apache-2.0" keywords = [] authors = [{ name = "deepset GmbH", email = "info@deepset.ai" }] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/jina/pyproject.toml b/integrations/jina/pyproject.toml index d0891c4fa..565def7a5 100644 --- a/integrations/jina/pyproject.toml +++ b/integrations/jina/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "Joan Fontanals Martinez", email = "joan.fontanals.martinez@jina.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/llama_cpp/pyproject.toml b/integrations/llama_cpp/pyproject.toml index 19824589a..1b165dcaf 100644 --- a/integrations/llama_cpp/pyproject.toml +++ b/integrations/llama_cpp/pyproject.toml @@ -15,7 +15,7 @@ authors = [ { name = "Ashwin Mathur", email = "" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/ollama/pyproject.toml b/integrations/ollama/pyproject.toml index 6eac6c60c..e3bb738b6 100644 --- a/integrations/ollama/pyproject.toml +++ b/integrations/ollama/pyproject.toml @@ -16,7 +16,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/opensearch/pyproject.toml b/integrations/opensearch/pyproject.toml index 11a32f100..794fa73fa 100644 --- a/integrations/opensearch/pyproject.toml +++ b/integrations/opensearch/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/pgvector/pyproject.toml b/integrations/pgvector/pyproject.toml index 20e4c1f90..65ded967f 100644 --- a/integrations/pgvector/pyproject.toml +++ b/integrations/pgvector/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/pinecone/pyproject.toml b/integrations/pinecone/pyproject.toml index ad4ec081a..f7dbe8df9 100644 --- a/integrations/pinecone/pyproject.toml +++ b/integrations/pinecone/pyproject.toml @@ -12,7 +12,7 @@ license = "Apache-2.0" keywords = [] authors = [{ name = "deepset GmbH", email = "info@deepset.ai" }] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/qdrant/pyproject.toml b/integrations/qdrant/pyproject.toml index 466f989f5..58a3534c4 100644 --- a/integrations/qdrant/pyproject.toml +++ b/integrations/qdrant/pyproject.toml @@ -15,7 +15,7 @@ authors = [ { name = "Anush Shetty", email = "anush.shetty@qdrant.com" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", diff --git a/integrations/unstructured/pyproject.toml b/integrations/unstructured/pyproject.toml index a3ad71d29..7366a8adf 100644 --- a/integrations/unstructured/pyproject.toml +++ b/integrations/unstructured/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", diff --git a/integrations/weaviate/pyproject.toml b/integrations/weaviate/pyproject.toml index 563f7bcdb..fb132516c 100644 --- a/integrations/weaviate/pyproject.toml +++ b/integrations/weaviate/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name = "deepset GmbH", email = "info@deepset.ai" }, ] classifiers = [ - "Development Status :: 4 - Beta ", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", From 46b39a04c11805bf18b78ceea6449c981f0d36b3 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 9 Feb 2024 12:54:53 +0100 Subject: [PATCH 24/24] Update CI_readme_sync.yml --- .github/workflows/CI_readme_sync.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/CI_readme_sync.yml b/.github/workflows/CI_readme_sync.yml index 5f6ae6fb5..18cb6378f 100644 --- a/.github/workflows/CI_readme_sync.yml +++ b/.github/workflows/CI_readme_sync.yml @@ -4,7 +4,6 @@ on: push: branches: - main - - massi/readme-sync jobs: sync: