fix: Adds missing __init__.py (#259)

This commit is contained in:
cragwolfe 2023-02-22 21:31:34 -08:00 committed by GitHub
parent 80c0fab215
commit 83f04545df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
## 0.4.13
* Fixes unstructured-ingest cli.
## 0.4.12
* Adds console_entrypoint for unstructured-ingest, other structure/doc updates related to ingest.

View File

@ -20,6 +20,8 @@ Installation note: make sure to install the following extras when installing uns
pip install "unstructured[s3,local-inference]"
See the [Quick Start](https://github.com/Unstructured-IO/unstructured#eight_pointed_black_star-quick-start) which documents how to pip install `dectectron2` and other OS dependencies, necessary for the parsing of .PDF files.
# Developers' Guide
## Local testing

View File

@ -1 +1 @@
__version__ = "0.4.12" # pragma: no cover
__version__ = "0.4.13" # pragma: no cover

View File