Skip to content

Commit

Permalink
version 0.0.79; bump to unstructured 0.0.79 (#454)
Browse files Browse the repository at this point in the history
### Summary

Bumps to `unstructured==0.15.7`.
  • Loading branch information
MthwRobinson authored Aug 20, 2024
1 parent e510f26 commit 843d68a
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.79

* Bump to `unstructured` 0.15.7

## 0.0.78

* Resolve NLTK CVE.
Expand Down
2 changes: 1 addition & 1 deletion prepline_general/api/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
app = FastAPI(
title="Unstructured Pipeline API",
summary="Partition documents with the Unstructured library",
version="0.0.78",
version="0.0.79",
docs_url="/general/docs",
openapi_url="/general/openapi.json",
servers=[
Expand Down
4 changes: 2 additions & 2 deletions prepline_general/api/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ def return_content_type(filename: str):


@router.get("/general/v0/general", include_in_schema=False)
@router.get("/general/v0.0.78/general", include_in_schema=False)
@router.get("/general/v0.0.79/general", include_in_schema=False)
async def handle_invalid_get_request():
raise HTTPException(
status_code=status.HTTP_405_METHOD_NOT_ALLOWED, detail="Only POST requests are supported."
Expand All @@ -664,7 +664,7 @@ async def handle_invalid_get_request():
description="Description",
operation_id="partition_parameters",
)
@router.post("/general/v0.0.78/general", include_in_schema=False)
@router.post("/general/v0.0.79/general", include_in_schema=False)
def general_partition(
request: Request,
# cannot use annotated type here because of a bug described here:
Expand Down
2 changes: 1 addition & 1 deletion preprocessing-pipeline-family.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
name: general
version: 0.0.78
version: 0.0.79
6 changes: 3 additions & 3 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ markdown==3.7
# via unstructured
markupsafe==2.1.5
# via jinja2
marshmallow==3.21.3
marshmallow==3.22.0
# via
# dataclasses-json
# unstructured-client
Expand Down Expand Up @@ -383,7 +383,7 @@ tqdm==4.66.5
# nltk
# transformers
# unstructured
transformers==4.44.0
transformers==4.44.1
# via unstructured-inference
typing-extensions==4.12.2
# via
Expand All @@ -409,7 +409,7 @@ typing-inspect==0.9.0
# unstructured-client
tzdata==2024.1
# via pandas
unstructured[all-docs]==0.15.6
unstructured[all-docs]==0.15.7
# via -r requirements/base.in
unstructured-client==0.25.5
# via unstructured
Expand Down
6 changes: 3 additions & 3 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ markupsafe==2.1.5
# -r requirements/base.txt
# jinja2
# nbconvert
marshmallow==3.21.3
marshmallow==3.22.0
# via
# -r requirements/base.txt
# dataclasses-json
Expand Down Expand Up @@ -878,7 +878,7 @@ traitlets==5.14.3
# nbconvert
# nbformat
# qtconsole
transformers==4.44.0
transformers==4.44.1
# via
# -r requirements/base.txt
# unstructured-inference
Expand Down Expand Up @@ -916,7 +916,7 @@ tzdata==2024.1
# via
# -r requirements/base.txt
# pandas
unstructured[all-docs]==0.15.6
unstructured[all-docs]==0.15.7
# via -r requirements/base.txt
unstructured-client==0.25.5
# via
Expand Down

0 comments on commit 843d68a

Please sign in to comment.