mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-12-26 14:45:31 +00:00
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:
parent
6af6604057
commit
c02cfb89d3
@ -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.
|
||||
|
||||
2
setup.py
2
setup.py
@ -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={
|
||||
|
||||
@ -1 +1 @@
|
||||
__version__ = "0.12.7-dev5" # pragma: no cover
|
||||
__version__ = "0.12.7-dev6" # pragma: no cover
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user