From d6a84bdfbbb05a21fbc580995508430ef0770383 Mon Sep 17 00:00:00 2001 From: Christine Straub Date: Wed, 14 Aug 2024 10:19:20 -0700 Subject: [PATCH] build(deps): update extra-paddleocr requirements (#3515) This PR removes custom index URL for `paddlepaddle` installation in `extra-paddleocr.in`, resolving `setup.py` configuration error. Now uses `paddlepaddle==3.0.0b1` directly from PyPI, simplifying installation process. --------- Co-authored-by: Matt Robinson Co-authored-by: Matt Robinson --- CHANGELOG.md | 10 ++++++++++ requirements/extra-paddleocr.in | 2 +- unstructured/__version__.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac574e0b5a..1ff3e1b496 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.15.3 + +### Enhancements + +### Features + +### Fixes + +* **Remove the custom index URL from `extra-paddleocr.in` to resolve the error in the `setup.py` configuration.** + ## 0.15.2 ### Enhancements diff --git a/requirements/extra-paddleocr.in b/requirements/extra-paddleocr.in index 66031f140f..f78a4f2f80 100644 --- a/requirements/extra-paddleocr.in +++ b/requirements/extra-paddleocr.in @@ -1,5 +1,5 @@ -c ./deps/constraints.txt -c base.txt -paddlepaddle==3.0.0b1 -i https://www.paddlepaddle.org.cn/packages/stable/cpu/ +paddlepaddle==3.0.0b1 unstructured.paddleocr==2.8.0.1 diff --git a/unstructured/__version__.py b/unstructured/__version__.py index bf1a84871c..e8949bf4f6 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.15.2" # pragma: no cover +__version__ = "0.15.3" # pragma: no cover