File tree 5 files changed +15
-3
lines changed
5 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1
- ## 0.4.3-dev2
1
+ ## 0.4.3
2
2
3
+ * Adds ` requests ` as a base dependency
3
4
* Fix in ` exceeds_cap_ratio ` so the function doesn't break with empty text
4
5
* Fix bug in ` _parse_received_data ` .
5
6
* Update ` detect_filetype ` to properly handle ` .doc ` , ` .xls ` , and ` .ppt ` .
Original file line number Diff line number Diff line change @@ -11,7 +11,10 @@ backoff==2.2.1
11
11
certifi==2022.12.7
12
12
# via
13
13
# httpx
14
+ # requests
14
15
# unstructured (setup.py)
16
+ charset-normalizer==3.0.1
17
+ # via requests
15
18
click==8.1.3
16
19
# via nltk
17
20
deprecated==1.2.13
@@ -25,7 +28,9 @@ httpcore==0.11.1
25
28
httpx==0.15.5
26
29
# via argilla
27
30
idna==3.4
28
- # via rfc3986
31
+ # via
32
+ # requests
33
+ # rfc3986
29
34
joblib==1.2.0
30
35
# via nltk
31
36
lxml==4.9.2
@@ -67,6 +72,8 @@ pytz==2022.7
67
72
# via pandas
68
73
regex==2022.10.31
69
74
# via nltk
75
+ requests==2.28.2
76
+ # via unstructured (setup.py)
70
77
rfc3986[idna2008]==1.5.0
71
78
# via httpx
72
79
six==1.16.0
@@ -81,6 +88,8 @@ tqdm==4.64.1
81
88
# nltk
82
89
typing-extensions==4.4.0
83
90
# via pydantic
91
+ urllib3==1.26.14
92
+ # via requests
84
93
wrapt==1.13.3
85
94
# via
86
95
# argilla
Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ requests==2.28.2
99
99
# via
100
100
# huggingface-hub
101
101
# transformers
102
+ # unstructured (setup.py)
102
103
rfc3986[idna2008]==1.5.0
103
104
# via httpx
104
105
sacremoses==0.0.53
Original file line number Diff line number Diff line change 57
57
"python-docx" ,
58
58
"python-pptx" ,
59
59
"python-magic" ,
60
+ "requests" ,
60
61
# NOTE(robinson) - The following dependencies are pinned
61
62
# to address security scans
62
63
"certifi>=2022.12.07" ,
Original file line number Diff line number Diff line change 1
- __version__ = "0.4.3-dev2 " # pragma: no cover
1
+ __version__ = "0.4.3" # pragma: no cover
You can’t perform that action at this time.
0 commit comments