From ed62f6e1133a7bb4e33827250b2cffb5850670c9 Mon Sep 17 00:00:00 2001 From: Silvano Cerza Date: Wed, 5 Jun 2024 16:24:19 +0200 Subject: [PATCH] Drop support for Python 3.8 for Unstructured integration --- .github/workflows/unstructured.yml | 2 +- integrations/unstructured/pyproject.toml | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unstructured.yml b/.github/workflows/unstructured.yml index a5943c5b5..52a6a89a8 100644 --- a/.github/workflows/unstructured.yml +++ b/.github/workflows/unstructured.yml @@ -30,7 +30,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11"] steps: - name: Free up disk space diff --git a/integrations/unstructured/pyproject.toml b/integrations/unstructured/pyproject.toml index 9430b8732..8619991a0 100644 --- a/integrations/unstructured/pyproject.toml +++ b/integrations/unstructured/pyproject.toml @@ -7,7 +7,7 @@ name = "unstructured-fileconverter-haystack" dynamic = ["version"] description = 'Haystack 2.x component to convert files into Documents using the Unstructured API' readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" license = "Apache-2.0" keywords = [] authors = [ @@ -17,7 +17,6 @@ classifiers = [ "License :: OSI Approved :: Apache Software License", "Development Status :: 4 - Beta", "Programming Language :: Python", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -68,7 +67,7 @@ docs = [ ] [[tool.hatch.envs.all.matrix]] -python = ["3.8", "3.9", "3.10", "3.11"] +python = ["3.9", "3.10", "3.11"] [tool.hatch.envs.lint] detached = true