Skip to content

Commit 119e9bd

Browse files
authored
build: bump to 0.0.74; bump dependencies (#442)
### Summary Bumps dependencies and prepares files for the `0.0.74` release.
1 parent a2d5a5a commit 119e9bd

File tree

6 files changed

+42
-50
lines changed

6 files changed

+42
-50
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.74
2+
3+
* Bump to `unstructured` 0.15.0
4+
15
## 0.0.73
26

37
* Bump to `unstructured` 0.14.10

prepline_general/api/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
app = FastAPI(
1414
title="Unstructured Pipeline API",
1515
summary="Partition documents with the Unstructured library",
16-
version="0.0.73",
16+
version="0.0.74",
1717
docs_url="/general/docs",
1818
openapi_url="/general/openapi.json",
1919
servers=[

prepline_general/api/general.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ def return_content_type(filename: str):
649649

650650

651651
@router.get("/general/v0/general", include_in_schema=False)
652-
@router.get("/general/v0.0.73/general", include_in_schema=False)
652+
@router.get("/general/v0.0.74/general", include_in_schema=False)
653653
async def handle_invalid_get_request():
654654
raise HTTPException(
655655
status_code=status.HTTP_405_METHOD_NOT_ALLOWED, detail="Only POST requests are supported."
@@ -664,7 +664,7 @@ async def handle_invalid_get_request():
664664
description="Description",
665665
operation_id="partition_parameters",
666666
)
667-
@router.post("/general/v0.0.73/general", include_in_schema=False)
667+
@router.post("/general/v0.0.74/general", include_in_schema=False)
668668
def general_partition(
669669
request: Request,
670670
# cannot use annotated type here because of a bug described here:

preprocessing-pipeline-family.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
name: general
2-
version: 0.0.73
2+
version: 0.0.74

requirements/base.txt

+13-17
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ backoff==2.2.1
1919
# unstructured
2020
beautifulsoup4==4.12.3
2121
# via unstructured
22-
cachetools==5.3.3
22+
cachetools==5.4.0
2323
# via google-auth
2424
certifi==2024.7.4
2525
# via
@@ -47,7 +47,7 @@ coloredlogs==15.0.1
4747
# via onnxruntime
4848
contourpy==1.2.1
4949
# via matplotlib
50-
cryptography==42.0.8
50+
cryptography==43.0.0
5151
# via pdfminer-six
5252
cycler==0.12.1
5353
# via matplotlib
@@ -69,9 +69,9 @@ emoji==2.12.1
6969
# via unstructured
7070
et-xmlfile==1.1.0
7171
# via openpyxl
72-
exceptiongroup==1.2.1
72+
exceptiongroup==1.2.2
7373
# via anyio
74-
fastapi==0.111.0
74+
fastapi==0.111.1
7575
# via -r requirements/base.in
7676
fastapi-cli==0.0.4
7777
# via fastapi
@@ -102,11 +102,11 @@ googleapis-common-protos==1.63.2
102102
# via
103103
# google-api-core
104104
# grpcio-status
105-
grpcio==1.64.1
105+
grpcio==1.65.1
106106
# via
107107
# google-api-core
108108
# grpcio-status
109-
grpcio-status==1.64.1
109+
grpcio-status==1.65.1
110110
# via google-api-core
111111
h11==0.14.0
112112
# via
@@ -120,7 +120,7 @@ httpx==0.27.0
120120
# via
121121
# fastapi
122122
# unstructured-client
123-
huggingface-hub==0.23.4
123+
huggingface-hub==0.24.0
124124
# via
125125
# timm
126126
# tokenizers
@@ -220,8 +220,6 @@ openpyxl==3.1.5
220220
# via unstructured
221221
ordered-set==4.1.0
222222
# via deepdiff
223-
orjson==3.10.6
224-
# via fastapi
225223
packaging==24.1
226224
# via
227225
# huggingface-hub
@@ -263,7 +261,7 @@ pillow==10.4.0
263261
# unstructured-pytesseract
264262
pillow-heif==0.17.0
265263
# via unstructured
266-
portalocker==2.10.0
264+
portalocker==2.10.1
267265
# via iopath
268266
proto-plus==1.24.0
269267
# via
@@ -304,7 +302,7 @@ pypandoc==1.13
304302
# via unstructured
305303
pyparsing==3.1.2
306304
# via matplotlib
307-
pypdf==4.2.0
305+
pypdf==4.3.1
308306
# via
309307
# -r requirements/base.in
310308
# unstructured
@@ -391,7 +389,7 @@ soupsieve==2.5
391389
# via beautifulsoup4
392390
starlette==0.37.2
393391
# via fastapi
394-
sympy==1.13.0
392+
sympy==1.13.1
395393
# via
396394
# onnxruntime
397395
# torch
@@ -448,11 +446,9 @@ typing-inspect==0.9.0
448446
# unstructured-client
449447
tzdata==2024.1
450448
# via pandas
451-
ujson==5.10.0
452-
# via fastapi
453-
unstructured[all-docs]==0.14.10
449+
unstructured[all-docs]==0.15.0
454450
# via -r requirements/base.in
455-
unstructured-client==0.24.0
451+
unstructured-client==0.24.1
456452
# via unstructured
457453
unstructured-inference==0.7.36
458454
# via unstructured
@@ -462,7 +458,7 @@ urllib3==2.2.2
462458
# via
463459
# requests
464460
# unstructured-client
465-
uvicorn[standard]==0.30.1
461+
uvicorn[standard]==0.30.3
466462
# via
467463
# -r requirements/base.in
468464
# fastapi

requirements/test.txt

+21-29
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ black==24.4.2
5454
# via -r requirements/test.in
5555
bleach==6.1.0
5656
# via nbconvert
57-
cachetools==5.3.3
57+
cachetools==5.4.0
5858
# via
5959
# -r requirements/base.txt
6060
# google-auth
@@ -101,9 +101,9 @@ contourpy==1.2.1
101101
# via
102102
# -r requirements/base.txt
103103
# matplotlib
104-
coverage[toml]==7.5.4
104+
coverage[toml]==7.6.0
105105
# via pytest-cov
106-
cryptography==42.0.8
106+
cryptography==43.0.0
107107
# via
108108
# -r requirements/base.txt
109109
# pdfminer-six
@@ -151,7 +151,7 @@ et-xmlfile==1.1.0
151151
# via
152152
# -r requirements/base.txt
153153
# openpyxl
154-
exceptiongroup==1.2.1
154+
exceptiongroup==1.2.2
155155
# via
156156
# -r requirements/base.txt
157157
# anyio
@@ -161,13 +161,13 @@ execnb==0.1.6
161161
# via nbdev
162162
executing==2.0.1
163163
# via stack-data
164-
fastapi==0.111.0
164+
fastapi==0.111.1
165165
# via -r requirements/base.txt
166166
fastapi-cli==0.0.4
167167
# via
168168
# -r requirements/base.txt
169169
# fastapi
170-
fastcore==1.5.49
170+
fastcore==1.5.54
171171
# via
172172
# execnb
173173
# ghapi
@@ -221,12 +221,12 @@ googleapis-common-protos==1.63.2
221221
# -r requirements/base.txt
222222
# google-api-core
223223
# grpcio-status
224-
grpcio==1.64.1
224+
grpcio==1.65.1
225225
# via
226226
# -r requirements/base.txt
227227
# google-api-core
228228
# grpcio-status
229-
grpcio-status==1.64.1
229+
grpcio-status==1.65.1
230230
# via
231231
# -r requirements/base.txt
232232
# google-api-core
@@ -250,7 +250,7 @@ httpx==0.27.0
250250
# fastapi
251251
# jupyterlab
252252
# unstructured-client
253-
huggingface-hub==0.23.4
253+
huggingface-hub==0.24.0
254254
# via
255255
# -r requirements/base.txt
256256
# timm
@@ -348,7 +348,7 @@ jupyter-events==0.10.0
348348
# via jupyter-server
349349
jupyter-lsp==2.2.5
350350
# via jupyterlab
351-
jupyter-server==2.14.1
351+
jupyter-server==2.14.2
352352
# via
353353
# jupyter-lsp
354354
# jupyterlab
@@ -357,11 +357,11 @@ jupyter-server==2.14.1
357357
# notebook-shim
358358
jupyter-server-terminals==0.5.3
359359
# via jupyter-server
360-
jupyterlab==4.2.3
360+
jupyterlab==4.2.4
361361
# via notebook
362362
jupyterlab-pygments==0.3.0
363363
# via nbconvert
364-
jupyterlab-server==2.27.2
364+
jupyterlab-server==2.27.3
365365
# via
366366
# jupyterlab
367367
# notebook
@@ -425,7 +425,7 @@ mpmath==1.3.0
425425
# via
426426
# -r requirements/base.txt
427427
# sympy
428-
mypy==1.10.1
428+
mypy==1.11.0
429429
# via -r requirements/test.in
430430
mypy-extensions==1.0.0
431431
# via
@@ -513,10 +513,6 @@ ordered-set==4.1.0
513513
# via
514514
# -r requirements/base.txt
515515
# deepdiff
516-
orjson==3.10.6
517-
# via
518-
# -r requirements/base.txt
519-
# fastapi
520516
overrides==7.7.0
521517
# via jupyter-server
522518
packaging==24.1
@@ -597,7 +593,7 @@ platformdirs==4.2.2
597593
# jupyter-core
598594
pluggy==1.5.0
599595
# via pytest
600-
portalocker==2.10.0
596+
portalocker==2.10.1
601597
# via
602598
# -r requirements/base.txt
603599
# iopath
@@ -631,7 +627,7 @@ ptyprocess==0.7.0
631627
# via
632628
# pexpect
633629
# terminado
634-
pure-eval==0.2.2
630+
pure-eval==0.2.3
635631
# via stack-data
636632
pyasn1==0.6.0
637633
# via
@@ -680,7 +676,7 @@ pyparsing==3.1.2
680676
# via
681677
# -r requirements/base.txt
682678
# matplotlib
683-
pypdf==4.2.0
679+
pypdf==4.3.1
684680
# via
685681
# -r requirements/base.txt
686682
# unstructured
@@ -693,7 +689,7 @@ pytesseract==0.3.10
693689
# via
694690
# -r requirements/base.txt
695691
# unstructured
696-
pytest==8.2.2
692+
pytest==8.3.1
697693
# via
698694
# pytest-cov
699695
# pytest-mock
@@ -858,7 +854,7 @@ starlette==0.37.2
858854
# via
859855
# -r requirements/base.txt
860856
# fastapi
861-
sympy==1.13.0
857+
sympy==1.13.1
862858
# via
863859
# -r requirements/base.txt
864860
# onnxruntime
@@ -976,13 +972,9 @@ tzdata==2024.1
976972
# via
977973
# -r requirements/base.txt
978974
# pandas
979-
ujson==5.10.0
980-
# via
981-
# -r requirements/base.txt
982-
# fastapi
983-
unstructured[all-docs]==0.14.10
975+
unstructured[all-docs]==0.15.0
984976
# via -r requirements/base.txt
985-
unstructured-client==0.24.0
977+
unstructured-client==0.24.1
986978
# via
987979
# -r requirements/base.txt
988980
# unstructured
@@ -1001,7 +993,7 @@ urllib3==2.2.2
1001993
# -r requirements/base.txt
1002994
# requests
1003995
# unstructured-client
1004-
uvicorn[standard]==0.30.1
996+
uvicorn[standard]==0.30.3
1005997
# via
1006998
# -r requirements/base.txt
1007999
# fastapi

0 commit comments

Comments
 (0)