From affd997c3936b08522c573117fa95420a794b1a4 Mon Sep 17 00:00:00 2001 From: Christine Straub Date: Mon, 26 Aug 2024 12:19:58 -0700 Subject: [PATCH] refactor(ci): remove unused environment variables (#3568) This PR removes the unused env `TABLE_OCR` from CI. --- .github/workflows/ci.yml | 2 -- .github/workflows/ingest-test-fixtures-update-pr.yml | 1 - CHANGELOG.md | 2 +- unstructured/__version__.py | 2 +- 4 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea3277ba0c..7975326353 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -362,7 +362,6 @@ jobs: PINECONE_API_KEY: ${{secrets.PINECONE_API_KEY}} ASTRA_DB_APPLICATION_TOKEN: ${{secrets.ASTRA_DB_TOKEN}} ASTRA_DB_API_ENDPOINT: ${{secrets.ASTRA_DB_ENDPOINT}} - TABLE_OCR: "tesseract" OCR_AGENT: "unstructured.partition.utils.ocr_models.tesseract_ocr.OCRAgentTesseract" CI: "true" run: | @@ -433,7 +432,6 @@ jobs: DATABRICKS_USERNAME: ${{secrets.DATABRICKS_USERNAME}} DATABRICKS_PASSWORD: ${{secrets.DATABRICKS_PASSWORD}} DATABRICKS_CATALOG: ${{secrets.DATABRICKS_CATALOG}} - TABLE_OCR: "tesseract" OCR_AGENT: "unstructured.partition.utils.ocr_models.tesseract_ocr.OCRAgentTesseract" CI: "true" run: | diff --git a/.github/workflows/ingest-test-fixtures-update-pr.yml b/.github/workflows/ingest-test-fixtures-update-pr.yml index 356b2ab67d..1bb2d81824 100644 --- a/.github/workflows/ingest-test-fixtures-update-pr.yml +++ b/.github/workflows/ingest-test-fixtures-update-pr.yml @@ -94,7 +94,6 @@ jobs: AZURE_SEARCH_API_KEY: ${{ secrets.AZURE_SEARCH_API_KEY }} OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} OCTOAI_API_KEY: ${{ secrets.OCTOAI_API_KEY }} - TABLE_OCR: "tesseract" OCR_AGENT: "unstructured.partition.utils.ocr_models.tesseract_ocr.OCRAgentTesseract" OVERWRITE_FIXTURES: "true" CI: "true" diff --git a/CHANGELOG.md b/CHANGELOG.md index 1603246298..363d5ec6f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.15.8-dev4 +## 0.15.8-dev5 ### Enhancements diff --git a/unstructured/__version__.py b/unstructured/__version__.py index b78e864c76..2b34f40314 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.15.8-dev4" # pragma: no cover +__version__ = "0.15.8-dev5" # pragma: no cover