Merge pull request #218 from socialcopsdev/add-chardet

Add chardet to install_requires
This commit is contained in:
Vinayak Mehta
2018-12-05 21:00:22 +05:30
committed by GitHub
3 changed files with 9 additions and 1 deletions
+7
View File
@@ -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)
------------------
+1 -1
View File
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
VERSION = (0, 4, 0)
VERSION = (0, 4, 1)
PRERELEASE = None # alpha, beta or rc
REVISION = None
+1
View File
@@ -14,6 +14,7 @@ with open('README.md', 'r') as f:
requires = [
'chardet>=3.0.4',
'click>=6.7',
'numpy>=1.13.3',
'openpyxl>=2.5.8',