Skip to content
Commits on Source (2)
pyosmium (2.14.0-2) UNRELEASED; urgency=medium
* Add module import tests to autopkgtest configuration.
* Bump Standards-Version to 4.1.4, no changes.
-- Bas Couwenberg <sebastic@debian.org> Mon, 16 Apr 2018 21:27:55 +0200
pyosmium (2.14.0-1) unstable; urgency=medium
* New upstream release.
......
......@@ -23,7 +23,7 @@ Build-Depends: debhelper (>= 9),
python3-nose,
python3-sphinx,
python3-sphinxcontrib.autoprogram
Standards-Version: 4.1.3
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/debian-gis-team/pyosmium/
Vcs-Git: https://salsa.debian.org/debian-gis-team/pyosmium.git
Homepage: http://osmcode.org/pyosmium/
......
# Test installability
Depends: @
Test-Command: /bin/true
# Test module import (Python 2)
Depends: python-all, python-pyosmium
Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import osmium; print(osmium)" ; done
# Test module import (Python 3)
Depends: python3-all, python3-pyosmium
Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import osmium; print(osmium)" ; done