From 5b994f37ae441b37e3cc3e3e9b5e5bd14b8c890a Mon Sep 17 00:00:00 2001 From: cragwolfe Date: Thu, 28 Sep 2023 23:09:18 -0700 Subject: [PATCH] build(release): actually make the release 0.10.18 (#1576) Workaround a publication issue to pypi. No code changes, 0.10.18 is the new 0.10.17. --- CHANGELOG.md | 2 +- setup.py | 7 +------ unstructured/__version__.py | 2 +- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 793b5196c..653464a23 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 7b0b900c4..cbde874f6 100644 --- a/setup.py +++ b/setup.py @@ -106,12 +106,7 @@ setup( 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 ce80d06e5..795e1f92b 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