-
Notifications
You must be signed in to change notification settings - Fork 611
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scheduled biweekly dependency update for week 24 #516
Closed
Closed
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
3443b89
Pin argcomplete to latest version 3.4.0
pyup-bot 2381869
Pin beautifulsoup4 to latest version 4.12.3
pyup-bot 7e8c54d
Update chardet from 3.* to 5.2.0
pyup-bot f0ca3f0
Pin extract-msg to latest version 0.48.5
pyup-bot 1a2b7fe
Update pdfminer.six from 20191110 to 20231228
pyup-bot eb4abc6
Pin six to latest version 1.16.0
pyup-bot 81283d3
Pin speechrecognition to latest version 3.10.4
pyup-bot e697eb9
Pin xlrd to latest version 2.0.1
pyup-bot ff2284d
Update sphinx from 2.1.2 to 7.3.7
pyup-bot 8ba256d
Update sphinx_rtd_theme from 0.4.3 to 2.0.0
pyup-bot ec91de4
Update sphinx-argparse from 0.2.5 to 0.4.0
pyup-bot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# This file contains all python dependencies that are required by the textract | ||
# package in order for it to properly work. | ||
|
||
argcomplete~=1.10.0 | ||
beautifulsoup4~=4.8.0 | ||
chardet==3.* | ||
argcomplete==3.4.0 | ||
beautifulsoup4==4.12.3 | ||
chardet==5.2.0 | ||
docx2txt~=0.8 | ||
extract-msg<=0.29.* #Last with python2 support | ||
pdfminer.six==20191110 #Last with python2 support | ||
extract-msg==0.48.5 #Last with python2 support | ||
pdfminer.six==20231228 #Last with python2 support | ||
python-pptx~=0.6.18 | ||
six~=1.12.0 | ||
SpeechRecognition~=3.8.1 | ||
xlrd~=1.2.0 | ||
six==1.16.0 | ||
SpeechRecognition==3.10.4 | ||
xlrd==2.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# this only includes packages that are needed for documentation build. | ||
|
||
sphinx==2.1.2 | ||
sphinx_rtd_theme==0.4.3 | ||
sphinx-argparse==0.2.5 | ||
sphinx==7.3.7 | ||
sphinx_rtd_theme==2.0.0 | ||
sphinx-argparse==0.4.0 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given this is not a lockfile but rather dependency spec for the python package, this
==
style would make things worse.#515
Not sure if this bot can be reconfigured to use
>=
instead