2 Commits

Author SHA1 Message Date
Vinayak Mehta 45e7f7570e Bump version 2018-10-08 03:54:21 +05:30
Vinayak Mehta 296be21d9d Update requirement versions 2018-10-08 01:44:20 +05:30
3 changed files with 21 additions and 16 deletions
+6 -1
View File
@@ -1,8 +1,13 @@
Release History
===============
0.2.3 (2018-10-08)
------------------
* Remove hard dependencies on requirements versions.
0.2.2 (2018-10-08)
-----------------
------------------
**Bugfixes**
+1 -1
View File
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
VERSION = (0, 2, 2)
VERSION = (0, 2, 3)
__title__ = 'camelot-py'
__description__ = 'PDF Table Extraction for Humans.'
+14 -14
View File
@@ -14,25 +14,25 @@ with open('README.md', 'r') as f:
requires = [
'click==6.7',
'matplotlib==2.2.3',
'numpy==1.15.2',
'openpyxl==2.5.8',
'pandas==0.23.4',
'pdfminer.six==20170720',
'PyPDF2==1.26.0'
'click>=6.7',
'matplotlib>=2.2.3',
'numpy>=1.15.2',
'openpyxl>=2.5.8',
'pandas>=0.23.4',
'pdfminer.six>=20170720',
'PyPDF2>=1.26.0'
]
all_requires = [
'opencv-python==3.4.2.17'
'opencv-python>=3.4.2.17'
]
dev_requires = [
'codecov==2.0.15',
'pytest==3.8.0',
'pytest-cov==2.6.0',
'pytest-runner==4.2',
'Sphinx==1.7.9'
'codecov>=2.0.15',
'pytest>=3.8.0',
'pytest-cov>=2.6.0',
'pytest-runner>=4.2',
'Sphinx>=1.7.9'
]
dev_requires = dev_requires + all_requires
@@ -76,5 +76,5 @@ def setup_package():
setup(**metadata)
if __name__ == '__main__':
if __name__ >= '__main__':
setup_package()