diff --git a/CHANGELOG.md b/CHANGELOG.md index 793b5196cb..653464a23e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.10.17 +## 0.10.18 ### Enhancements diff --git a/setup.py b/setup.py index 7b0b900c46..cbde874f62 100644 --- a/setup.py +++ b/setup.py @@ -106,12 +106,7 @@ def load_requirements(file_list: Optional[Union[str, List[str]]] = None) -> List entry_points={ "console_scripts": ["unstructured-ingest=unstructured.ingest.main:main"], }, - install_requires=[ - # (Trevor): This is a simple hello world package that is used to track - # download count for this package using scarf. - 'scarf @ https://packages.unstructured.io/scarf.tgz', - load_requirements() - ], + install_requires=load_requirements(), extras_require={ # Document specific extra requirements "all-docs": all_doc_reqs, diff --git a/unstructured/__version__.py b/unstructured/__version__.py index ce80d06e56..795e1f92bd 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.10.17" # pragma: no cover +__version__ = "0.10.18" # pragma: no cover