-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set wagtail to 2.13 and update other dependecies
- Loading branch information
1 parent
fce3667
commit 8251e02
Showing
10 changed files
with
46 additions
and
17 deletions.
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ tessdata/ | |
coverage_html_report/ | ||
.coverage | ||
coverage.xml | ||
.vscode |
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
5 changes: 4 additions & 1 deletion
5
src/wagtail_textract/management/commands/transcribe_documents.py
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
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,4 +1,4 @@ | ||
from wagtail.tests.settings import * | ||
|
||
WAGTAILDOCS_DOCUMENT_MODEL = 'wagtail_textract.document' | ||
INSTALLED_APPS = INSTALLED_APPS + ('wagtail_textract',) | ||
INSTALLED_APPS += ('wagtail_textract',) |
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
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
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
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
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 |
---|---|---|
|
@@ -13,4 +13,4 @@ requests==2.18.1 | |
nose==1.3.7 | ||
|
||
# needed for managing versions | ||
bumpversion==0.5.3 | ||
bumpversion==0.5.3 |
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,16 +1,18 @@ | ||
# This file contains all python dependencies that are required by the textract | ||
# package in order for it to properly work. | ||
|
||
argcomplete==1.8.2 | ||
argcomplete==1.10.0 | ||
chardet==3.0.4 | ||
python-pptx==0.6.12 | ||
python-pptx==0.6.18 | ||
pdfminer.six==20181108 | ||
#pdfminer.six <-- go back to this after the shebang fix is released (see https://github.com/goulu/pdfminer/issues/27) | ||
https://github.com/goulu/pdfminer/zipball/e6ad15af79a26c31f4e384d8427b375c93b03533#egg=pdfminer.six | ||
docx2txt==0.6 | ||
beautifulsoup4==4.6.0 | ||
xlrd==1.0.0 | ||
EbookLib==0.16 | ||
SpeechRecognition==3.7.1 | ||
#https://github.com/goulu/pdfminer/zipball/e6ad15af79a26c31f4e384d8427b375c93b03533#egg=pdfminer.six | ||
docx2txt==0.8 | ||
beautifulsoup4=>4.8.0,<4.8.3 | ||
xlrd==1.2.0 | ||
EbookLib==0.17.1 | ||
SpeechRecognition==3.8.1 | ||
https://github.com/mattgwwalker/msg-extractor/zipball/master | ||
six==1.10.0 | ||
pocketsphinx==0.1.3 | ||
six==1.12.0 | ||
extract-msg==0.23.1 | ||
tzlocal==1.5.1 |