Skip to content
Commits on Source (2)
owslib (0.16.0-2) UNRELEASED; urgency=medium
* Update Vcs-* URLs for Salsa.
* Bump Standards Version to 4.1.3, no changes.
* Bump Standards Version to 4.1.4, no changes.
* Add module import tests to autopkgtest configuration.
-- Johan Van de Wauw <johan@gisky.be> Sat, 31 Mar 2018 12:42:19 +0200
......
......@@ -19,7 +19,7 @@ Build-Depends: debhelper (>= 9),
python3-all,
python3-requests,
python3-sphinx
Standards-Version: 4.1.3
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/debian-gis-team/owslib
Vcs-Git: https://salsa.debian.org/debian-gis-team/owslib.git
Homepage: https://geopython.github.com/OWSLib/
......
# Test installability
Depends: @
Test-Command: /bin/true
# Test module import (Python 2)
Depends: python-all, python-owslib
Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import owslib; print(owslib)" ; done
# Test module import (Python 3)
Depends: python3-all, python3-owslib
Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import owslib; print(owslib)" ; done