From ab6496647c1e4b379898e5942ef5085e640fd63c Mon Sep 17 00:00:00 2001 From: alexanderlukanin13 Date: Wed, 15 Jan 2014 13:05:00 +0600 Subject: [PATCH] Added "six>=1.5.2" to requirements --- debian/control | 4 ++-- setup.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index 682002916..85ecdd135 100644 --- a/debian/control +++ b/debian/control @@ -2,14 +2,14 @@ Source: scrapy-SUFFIX Section: python Priority: optional Maintainer: Scrapinghub Team -Build-Depends: debhelper (>= 7.0.50), python (>=2.7), python-twisted, python-w3lib, python-lxml +Build-Depends: debhelper (>= 7.0.50), python (>=2.7), python-twisted, python-w3lib, python-lxml, python-six (>=1.5.2) Standards-Version: 3.8.4 Homepage: http://scrapy.org/ Package: scrapy-SUFFIX Architecture: all Depends: ${python:Depends}, python-lxml, python-twisted, python-openssl, - python-w3lib (>= 1.2), python-queuelib, python-cssselect (>= 0.9) + python-w3lib (>= 1.2), python-queuelib, python-cssselect (>= 0.9), python-six (>=1.5.2) Recommends: python-setuptools Conflicts: python-scrapy, scrapy, scrapy-0.11 Provides: python-scrapy, scrapy diff --git a/setup.py b/setup.py index a0f982567..6efe64074 100644 --- a/setup.py +++ b/setup.py @@ -129,6 +129,7 @@ else: 'lxml', 'pyOpenSSL', 'cssselect>=0.9', + 'six>=1.5.2', ] setup(**setup_args)