Merge pull request #218 from socialcopsdev/add-chardet

Add chardet to install_requires
pull/2/head v0.4.1
Vinayak Mehta 2018-12-05 21:00:22 +05:30 committed by GitHub
commit 1f0a1c0c68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 1 deletions

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)
------------------

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

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',