Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.20

* **Expand support to Python 3.13**

## 0.0.19

* **Add more granular error response texts and codes**
Expand Down
10 changes: 5 additions & 5 deletions requirements/cli.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ idna==3.10
# via anyio
importlib-metadata==8.5.0
# via opentelemetry-api
marshmallow==3.24.1
marshmallow==3.25.1
# via dataclasses-json
mypy-extensions==1.0.0
# via typing-inspect
Expand Down Expand Up @@ -84,11 +84,11 @@ packaging==24.2
# opentelemetry-instrumentation
pandas==2.2.3
# via unstructured-ingest
protobuf==5.29.2
protobuf==5.29.3
# via
# googleapis-common-protos
# opentelemetry-proto
pydantic==2.10.4
pydantic==2.10.5
# via
# fastapi
# unstructured-ingest
Expand Down Expand Up @@ -122,11 +122,11 @@ typing-inspect==0.9.0
# via dataclasses-json
tzdata==2024.2
# via pandas
unstructured-ingest==0.3.12
unstructured-ingest==0.3.13
# via -r ./cli.in
uvicorn==0.34.0
# via -r ./cli.in
wrapt==1.17.0
wrapt==1.17.2
# via
# deprecated
# opentelemetry-instrumentation
Expand Down
2 changes: 1 addition & 1 deletion requirements/constraints.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
unstructured-ingest>=0.3.12
unstructured-ingest>=0.3.13
2 changes: 1 addition & 1 deletion requirements/lint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pyflakes==3.2.0
# via
# autoflake
# flake8
ruff==0.8.6
ruff==0.9.1
# via -r ./lint.in
tomli==2.2.1
# via
Expand Down
2 changes: 1 addition & 1 deletion requirements/release.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ markdown-it-py==3.0.0
# via rich
mdurl==0.1.2
# via markdown-it-py
more-itertools==10.5.0
more-itertools==10.6.0
# via
# jaraco-classes
# jaraco-functools
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,<4.0",
url="https://github.com/Unstructured-IO/unstructured-platform-plugins", # noqa: 501
packages=find_packages(),
license="Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion unstructured_platform_plugins/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.19" # pragma: no cover
__version__ = "0.0.20" # pragma: no cover
Loading