Skip to content
Commits on Source (2)
python-cligj (0.4.0-2) UNRELEASED; urgency=medium
python-cligj (0.4.0-2) unstable; urgency=medium
* Team upload.
* Strip trailing whitespace from control & rules files.
......@@ -6,8 +6,9 @@ python-cligj (0.4.0-2) UNRELEASED; urgency=medium
* Update Vcs-* URLs for Salsa.
* Bump Standards-Version to 4.1.5, no changes.
* Drop ancient X-Python-Version field.
* Add autopkgtest installability & module import tests.
-- Bas Couwenberg <sebastic@debian.org> Tue, 21 Nov 2017 10:07:31 +0100
-- Bas Couwenberg <sebastic@debian.org> Sun, 29 Jul 2018 15:20:32 +0200
python-cligj (0.4.0-1) unstable; urgency=medium
......
# Test installability
Depends: @
Test-Command: /bin/true
# Test module import (Python 2)
Depends: python-all, python-cligj
Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import cligj; print(cligj)" ; done
# Test module import (Python 3)
Depends: python3-all, python3-cligj
Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import cligj; print(cligj)" ; done