Skip to content

Commit

Permalink
build(release): actually make the release 0.10.18 (#1576)
Browse files Browse the repository at this point in the history
Workaround a publication issue to pypi. No code changes, 0.10.18 is the
new 0.10.17.
  • Loading branch information
cragwolfe authored Sep 29, 2023
1 parent e0e329c commit 5b994f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.10.17
## 0.10.18

### Enhancements

Expand Down
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion unstructured/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.10.17" # pragma: no cover
__version__ = "0.10.18" # pragma: no cover

0 comments on commit 5b994f3

Please sign in to comment.