Skip to content

Commit 4f47a19

Browse files
committed
add support for python 3.13
1 parent 96bf60d commit 4f47a19

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: [ "3.10", "3.11", "3.12" ]
19+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
2020
steps:
2121
- uses: actions/checkout@v3
2222

@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
strategy:
4646
matrix:
47-
python-version: ["3.10", "3.11", "3.12"]
47+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
4848
steps:
4949
- uses: actions/checkout@v3
5050

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.20
2+
3+
* **Expand support to Python 3.13**
4+
15
## 0.0.19
26

37
* **Add more granular error response texts and codes**

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def load_requirements(file: Union[str, Path]) -> List[str]:
6666
"Programming Language :: Python :: 3.12",
6767
"Topic :: Scientific/Engineering :: Artificial Intelligence",
6868
],
69-
python_requires=">=3.10,<3.13",
69+
python_requires=">=3.10,<3.14",
7070
url="https://github.com/Unstructured-IO/unstructured-platform-plugins", # noqa: 501
7171
packages=find_packages(),
7272
license="Apache-2.0",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.19" # pragma: no cover
1+
__version__ = "0.0.20" # pragma: no cover

0 commit comments

Comments
 (0)