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 diff --git a/CHANGELOG.md b/CHANGELOG.md index b9c4ba9..e122941 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.20 + +* **Support Python 3.13** + ## 0.0.19 * **Add more granular error response texts and codes** 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", 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