From 23b3607f8dce53697b506565be8019b7478240a5 Mon Sep 17 00:00:00 2001 From: Nathan Van Gheem Date: Tue, 14 Jan 2025 09:34:32 -0500 Subject: [PATCH 1/3] support python 3.13 --- CHANGELOG.md | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9c4ba9..0d7cc43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## 0.0.19 -* **Add more granular error response texts and codes** +* **Support Python 3.13** ## 0.0.18 diff --git a/setup.py b/setup.py index 310dc3a..8fffa68 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ def load_requirements(file: Union[str, Path]) -> List[str]: "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering :: Artificial Intelligence", ], - python_requires=">=3.10,<3.13", + python_requires=">=3.10,<3.14", url="https://github.com/Unstructured-IO/unstructured-platform-plugins", # noqa: 501 packages=find_packages(), license="Apache-2.0", From acd67bd27a3fd04c056b5c1e3c40f843e672ee61 Mon Sep 17 00:00:00 2001 From: Nathan Van Gheem Date: Tue, 14 Jan 2025 09:35:19 -0500 Subject: [PATCH 2/3] add test --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75cd55d..2af4871 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.10", "3.11", "3.12" ] + python-version: [ "3.10", "3.11", "3.12", "3.13" ] steps: - uses: actions/checkout@v3 @@ -44,7 +44,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v3 From 17cb3cb363d09bb7b979b2439d7ade30952a8851 Mon Sep 17 00:00:00 2001 From: Nathan Van Gheem Date: Tue, 14 Jan 2025 09:40:07 -0500 Subject: [PATCH 3/3] fix vers --- CHANGELOG.md | 6 +++++- unstructured_platform_plugins/__version__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d7cc43..e122941 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ -## 0.0.19 +## 0.0.20 * **Support Python 3.13** +## 0.0.19 + +* **Add more granular error response texts and codes** + ## 0.0.18 * **Receive ingest 0.3.12** diff --git a/unstructured_platform_plugins/__version__.py b/unstructured_platform_plugins/__version__.py index e52f64f..7594e8f 100644 --- a/unstructured_platform_plugins/__version__.py +++ b/unstructured_platform_plugins/__version__.py @@ -1 +1 @@ -__version__ = "0.0.19" # pragma: no cover +__version__ = "0.0.20" # pragma: no cover