summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2016-10-08 20:16:59 +0300
committerLars Wirzenius <liw@liw.fi>2016-10-08 20:16:59 +0300
commit1f122e657370d0b25bb71b5c89f882b141b3b46a (patch)
treecb892a7464e81dd3c7ac438a171d01db43ed6627
parent7b2fc612dff09ed946336257dc8cac7a89bdb928 (diff)
downloadcoverage-test-runner-1f122e657370d0b25bb71b5c89f882b141b3b46a.tar.gz
Raise debhelper dependency to >= 9
-rw-r--r--debian/changelog2
-rw-r--r--debian/compat2
-rw-r--r--debian/control6
3 files changed, 6 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog
index a8e49fc..0a292ba 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,8 @@ python-coverage-test-runner (1.12+git-1) UNRELEASED; urgency=low
* New upstream version.
* debian/control: Raise Python dependency to 2.7 or later.
+ * debian/control: Raise Standards-Version to 3.9.8. No other changes needed.
+ * debian/control: Raise dependency on debhelper to 9 or later.
-- Lars Wirzenius <liw@liw.fi> Sun, 25 Oct 2015 13:17:24 +0200
diff --git a/debian/compat b/debian/compat
index 7f8f011..ec63514 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-7
+9
diff --git a/debian/control b/debian/control
index e230faf..636c728 100644
--- a/debian/control
+++ b/debian/control
@@ -3,14 +3,14 @@ Maintainer: Lars Wirzenius <liw@liw.fi>
Homepage: http://liw.fi/coverage-test-runner/
Section: python
Priority: optional
-Standards-Version: 3.9.5
-Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.7~),
+Standards-Version: 3.9.8
+Build-Depends: debhelper (>= 9), python-all (>= 2.7~),
python-coverage
X-Python-Version: >= 2.7
Package: python-coverage-test-runner
Architecture: all
-Depends: ${misc:Depends}, ${python:Depends}, python-coverage
+Depends: ${misc:Depends}, ${python:Depends}, python (>= 2.7), python-coverage
Description: fail Python program unit tests unless they test everything
This package contains the Python module CoverageTestRunner, which runs
unit tests implemented using the unittest module in the Python standard