bug/unstructured-ingest produces ModuleNotFoundError: No module named 'unstructured.txtgest (#2661)

Quick fix for issue
https://github.com/Unstructured-IO/unstructured/issues/2658
This commit is contained in:
Roman Isecke 2024-03-18 15:08:29 -04:00 committed by GitHub
parent 6af6604057
commit c02cfb89d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
## 0.12.7-dev5
## 0.12.7-dev6
### Enhancements
@ -14,7 +14,7 @@
## 0.12.6
### Enhancements
### Enhancements
* **Improve ability to capture embedded links in `partition_pdf()` for `fast` strategy** Previously, a threshold value that affects the capture of embedded links was set to a fixed value by default. This allows users to specify the threshold value for better capturing.
* **Refactor `add_chunking_strategy` decorator to dispatch by name.** Add `chunk()` function to be used by the `add_chunking_strategy` decorator to dispatch chunking call based on a chunking-strategy name (that can be dynamic at runtime). This decouples chunking dispatch from only those chunkers known at "compile" time and enables runtime registration of custom chunkers.

View File

@ -104,7 +104,7 @@ setup(
packages=find_packages(),
version=__version__,
entry_points={
"console_scripts": ["unstructured-ingest=unstructured.txtgest.main:main"],
"console_scripts": ["unstructured-ingest=unstructured.ingest.main:main"],
},
install_requires=load_requirements(),
extras_require={

View File

@ -1 +1 @@
__version__ = "0.12.7-dev5" # pragma: no cover
__version__ = "0.12.7-dev6" # pragma: no cover