From 0eed84d3ffc062c464633b74e2ca0207f5edf548 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Sat, 29 Apr 2017 19:56:15 -0500 Subject: [PATCH] Don't include html5lib and six in PI zip--uses calibre's versions anyway. --- makeplugin.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/makeplugin.py b/makeplugin.py index bef6dc5..858c79e 100644 --- a/makeplugin.py +++ b/makeplugin.py @@ -35,8 +35,11 @@ if __name__=="__main__": exclude=exclude) os.chdir('../included_dependencies') + files=['gif.py','bs4','chardet','html2text'] + # calibre has it's own copies of these that precedence anyway: + # 'six.py','html5lib','webencodings' + # webencodings is only needed by versions of html5lib after 0.9x7 # 'a' for append - files=['gif.py','six.py','bs4','html5lib','chardet','html2text'] createZipFile("../"+filename,"a", files, exclude=exclude)