From 2635f910e49cbd533ddc00680d5f2ef7eec4524c Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Wed, 5 Dec 2018 20:08:37 +0530 Subject: [PATCH] Add chardet to install_requires --- HISTORY.md | 7 +++++++ setup.py | 1 + 2 files changed, 8 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index a2fff7fc..4cf77ba5 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -4,6 +4,13 @@ Release History master ------ +0.4.1 (2018-12-05) +------------------ + +**Bugfixes** + +* Add chardet to `install_requires` to fix [#210](https://github.com/socialcopsdev/camelot/issues/210). More details in [pdfminer.six#213](https://github.com/pdfminer/pdfminer.six/issues/213). + 0.4.0 (2018-11-23) ------------------ diff --git a/setup.py b/setup.py index 417b460b..b83f566c 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,7 @@ requires = [ + 'chardet>=3.0.4', 'click>=6.7', 'numpy>=1.13.3', 'openpyxl>=2.5.8',