Skip to content

Commit

Permalink
Drop support for Python 3.8 for Unstructured integration (#787)
Browse files Browse the repository at this point in the history
  • Loading branch information
silvanocerza authored Jun 5, 2024
1 parent ab58a23 commit 48422b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unstructured.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions integrations/unstructured/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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",
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 48422b1

Please sign in to comment.