opnsense-ports/textproc/py-csvkit/files/patch-setup.py
Franco Fichtner 8cde128a49 */*: sync with upstream
Taken from: FreeBSD
2016-07-05 08:33:25 +02:00

23 lines
585 B
Python

--- setup.py.orig 2015-03-31 01:07:39 UTC
+++ setup.py
@@ -6,9 +6,9 @@ from setuptools import setup
install_requires = [
'xlrd>=0.7.1',
'sqlalchemy>=0.6.6',
- 'openpyxl==2.2.0-b1',
+ 'openpyxl>=2.2.0-b1',
'six>=1.6.1',
- 'python-dateutil==2.2'
+ 'python-dateutil>=2.2'
]
if sys.version_info < (2, 7):
@@ -17,7 +17,7 @@ if sys.version_info < (2, 7):
install_requires.append('simplejson>=3.6.3')
if sys.version_info[0] == 2:
- install_requires.append('dbf==0.94.003')
+ install_requires.append('dbf>=0.94.003')
setup(
name='csvkit',