mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-10-13 00:53:15 +00:00

* split dependencies by document type * make pip-compile with new requirements * add extra requirements to setup.py * add in all docs; re pip-compile * extra for all docs * add pandas to xlsx * dependency requires for tsv and csv * handling for doc, docx and odt * dependency check for pypandoc * required dependencies for pandoc files * xml and html * markdown * msg * add in pdf * add in pptx * add in excel * add lxml as base req * extra all docs for local inference * local inference installs all * pin pillow version * fixes for plain text tests * fixes for doc * update make commands * changelog and version * add xlrd * update pip-compile * pin numpy for python 3.8 support * more constraints * contraint on scipy * update install docs * constrain ipython * add outlook to pip-compile * more ipython constraints * add extras to dockerfile * pin office365 client * few doc tweaks * types as strings * last pip-compile * re pip-comple * make tidy * make tidy
25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
####################################################################################################
|
|
# This file can house global constraints that aren't *direct* requirements of the package or any
|
|
# extras. Putting a dependency here will only affect dependency sets that contain them -- in other
|
|
# words, if something does not require a constraint, it will not be installed.
|
|
####################################################################################################
|
|
# NOTE(alan): Pinning to avoid conflicts with downstream ingest-s3
|
|
urllib3<1.27, >=1.25.4
|
|
# consistency with local-inference-pin
|
|
protobuf<4.24
|
|
# NOTE(robinson) - Required pins for security scans
|
|
jupyter-core>=4.11.2
|
|
wheel>=0.38.1
|
|
# NOTE(robinson) - The following pins are to address
|
|
# vulnerabilities in dependency scans
|
|
certifi>=2023.7.22
|
|
# From pycocotools in local-inference
|
|
pyparsing<3.1.0
|
|
# NOTE(robinson) - Numpy dropped Python 3.8 support in 1.25.0
|
|
numpy<1.25.0
|
|
scipy<1.11.0
|
|
IPython<8.13
|
|
# NOTE(robinson) - See this issue here
|
|
# https://github.com/facebookresearch/detectron2/issues/5010
|
|
Pillow<10.0.0
|