[Python-modules-commits] [csvkit] 01/04: Fix specific dependencies

Sandro Tosi morph at moszumanska.debian.org
Wed Nov 4 01:17:44 UTC 2015


This is an automated email from the git hooks/post-receive script.

morph pushed a commit to branch master
in repository csvkit.

commit d479a660ffeeec4ca9837191ad779fd2e5cc90e9
Author: Alexandre Viau <alexandre at alexandreviau.net>
Date:   Wed Nov 4 01:09:20 2015 +0000

    Fix specific dependencies
    
    Last-Update: 2015-08-17
    
    Patch-Name: dependencies-greater-or-equal.patch
---
 setup.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/setup.py b/setup.py
index 39a69ad..3c6c08a 100644
--- a/setup.py
+++ b/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',

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/csvkit.git



More information about the Python-modules-commits mailing list