You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: setup.py
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -129,7 +129,7 @@ def run(self):
129
129
130
130
setup(
131
131
name="wdoc",
132
-
version="5.1.1",
132
+
version="5.1.3",
133
133
description="A perfect AI powered RAG for document query and summary. Supports ~all LLM and ~all filetypes (url, pdf, epub, youtube (incl playlist), audio, anki, md, docx, pptx, or any combination!)",
134
134
long_description=long_description,
135
135
long_description_content_type="text/markdown",
@@ -215,7 +215,7 @@ def run(self):
215
215
"pdfplumber >= 0.11.1",
216
216
"pdf2image >= 1.17.0",
217
217
# URL / web loading (default, since urls are the most common filetype)
218
-
"playwright >= 1.45.0", # for online_media and urls
218
+
"playwright >= 1.60.0", # for online_media and urls
219
219
"goose3 >= 3.1.20",
220
220
"tldextract>=5.1.2",
221
221
# online search via 'filetype=web'
@@ -232,12 +232,12 @@ def run(self):
232
232
# audio/video transcription
233
233
"deepgram-sdk >= 3.2.7",
234
234
"httpx >= 0.27.0", # to increase deepgram timeout
235
-
"pydub >= 0.25.1", # extracting audio from local video
235
+
"pydub == 0.25.1", # extracting audio from local video
236
236
# audioop was removed in stdlib in Python 3.13 and pydub needs it
237
237
# See https://github.com/jiaaro/pydub/issues/815
238
238
"audioop-lts>=0.2.2; python_version>='3.13'",
239
-
"ffmpeg-python >= 0.2.0", # extracting audio from local video
240
-
"torchaudio >= 2.8.0", # silence removal from audio
239
+
"ffmpeg-python == 0.2.0", # extracting audio from local video
240
+
"torchaudio == 2.8.0", # silence removal from audio
0 commit comments