Skip to content

Commit c02cfb8

Browse files
authored
bug/unstructured-ingest produces ModuleNotFoundError: No module named 'unstructured.txtgest (#2661)
Quick fix for issue https://github.com/Unstructured-IO/unstructured/issues/2658
1 parent 6af6604 commit c02cfb8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.12.7-dev5
1+
## 0.12.7-dev6
22

33
### Enhancements
44

@@ -14,7 +14,7 @@
1414

1515
## 0.12.6
1616

17-
### Enhancements
17+
### Enhancements
1818

1919
* **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.
2020
* **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.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def load_requirements(file_list: Optional[Union[str, List[str]]] = None) -> List
104104
packages=find_packages(),
105105
version=__version__,
106106
entry_points={
107-
"console_scripts": ["unstructured-ingest=unstructured.txtgest.main:main"],
107+
"console_scripts": ["unstructured-ingest=unstructured.ingest.main:main"],
108108
},
109109
install_requires=load_requirements(),
110110
extras_require={

unstructured/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.12.7-dev5" # pragma: no cover
1+
__version__ = "0.12.7-dev6" # pragma: no cover

0 commit comments

Comments
 (0)