aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-02-19 12:28:00 +0100
committerGuido Günther <agx@sigxcpu.org>2015-02-20 12:38:13 +0100
commitf7afe1d06c56748c6d9bfcae6166beba21bb3e53 (patch)
treeda37bc59f2d12ca6f57d70c8001705be0560914b
parent048e3b6e1960bd8e1d79b8a458d27a288616d24d (diff)
Require six
to work towards Python3 support Gbp-Dch: Ignore
-rw-r--r--debian/control2
-rw-r--r--setup.py1
2 files changed, 3 insertions, 0 deletions
diff --git a/debian/control b/debian/control
index e0d81fa..e679bdf 100644
--- a/debian/control
+++ b/debian/control
@@ -19,6 +19,7 @@ Build-Depends:
python-nosexcover,
python-pkg-resources,
python-rpm,
+ python-six,
python-setuptools,
rpm,
sgml2x,
@@ -44,6 +45,7 @@ Depends: ${python:Depends},
man-db,
python-dateutil,
python-pkg-resources,
+ python-six,
Recommends: pristine-tar (>= 0.5), cowbuilder, python-requests
Suggests: python-notify, unzip
Description: Suite to help with Debian packages in Git repositories
diff --git a/setup.py b/setup.py
index 896edab..9216805 100644
--- a/setup.py
+++ b/setup.py
@@ -64,6 +64,7 @@ setup(name = "gbp",
scripts = ['bin/git-pbuilder'],
packages = find_packages(exclude=['tests', 'tests.*']),
data_files = [("/etc/git-buildpackage/", ["gbp.conf"]),],
+ requires = ["six"],
setup_requires=['nose>=0.11.1', 'coverage>=2.85', 'nosexcover>=1.0.7'] if \
os.getenv('WITHOUT_NOSETESTS') is None else [],
entry_points = {