Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.8.5

* fix: remove `pdfplumber` but include `pdfminer-six==20240706` to update `pdfminer`

## 0.8.4

* feat: add `text_as_html` and `table_as_cells` to `LayoutElements` class as new attributes
Expand Down
3 changes: 2 additions & 1 deletion requirements/base.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ transformers>=4.25.1
rapidfuzz
pandas
scipy
pdfplumber
pypdfium2
pdfminer-six==20240706
13 changes: 5 additions & 8 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ filelock==3.16.1
# transformers
flatbuffers==24.12.23
# via onnxruntime
fonttools==4.55.3
fonttools==4.55.4
# via matplotlib
fsspec==2024.12.0
# via
Expand Down Expand Up @@ -83,14 +83,11 @@ packaging==24.2
# transformers
pandas==2.2.3
# via -r requirements/base.in
pdfminer-six==20231228
# via pdfplumber
pdfplumber==0.11.5
pdfminer-six==20240706
# via -r requirements/base.in
pillow==11.1.0
# via
# matplotlib
# pdfplumber
# torchvision
protobuf==5.29.3
# via
Expand All @@ -101,7 +98,7 @@ pycparser==2.22
pyparsing==3.2.1
# via matplotlib
pypdfium2==4.30.1
# via pdfplumber
# via -r requirements/base.in
python-dateutil==2.9.0.post0
# via
# matplotlib
Expand Down Expand Up @@ -135,7 +132,7 @@ sympy==1.13.1
# via
# onnxruntime
# torch
timm==1.0.13
timm==1.0.14
# via -r requirements/base.in
tokenizers==0.21.0
# via transformers
Expand All @@ -150,7 +147,7 @@ tqdm==4.67.1
# via
# huggingface-hub
# transformers
transformers==4.48.0
transformers==4.48.1
# via -r requirements/base.in
typing-extensions==4.12.2
# via
Expand Down
6 changes: 3 additions & 3 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ executing==2.1.0
# via stack-data
fastjsonschema==2.21.1
# via nbformat
fonttools==4.55.3
fonttools==4.55.4
# via
# -c requirements/base.txt
# matplotlib
Expand All @@ -106,7 +106,7 @@ idna==3.10
# httpx
# jsonschema
# requests
importlib-metadata==8.5.0
importlib-metadata==8.6.1
# via
# build
# jupyter-client
Expand Down Expand Up @@ -273,7 +273,7 @@ platformdirs==4.3.6
# jupyter-core
prometheus-client==0.21.1
# via jupyter-server
prompt-toolkit==3.0.48
prompt-toolkit==3.0.50
# via
# ipython
# jupyter-console
Expand Down
2 changes: 1 addition & 1 deletion unstructured_inference/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.4" # pragma: no cover
__version__ = "0.8.5" # pragma: no cover
Loading