Skip to content
Commits on Source (2)
......@@ -4,7 +4,8 @@ fiona (1.7.10-2) UNRELEASED; urgency=medium
* Strip trailing whitespace from changelog, control & rules files.
* Update copyright-format URL to use HTTPS.
* 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.
-- Bas Couwenberg <sebastic@debian.org> Wed, 15 Nov 2017 21:48:42 +0100
......
......@@ -30,7 +30,7 @@ Build-Depends: debhelper (>= 9),
python3-six,
python-sphinx,
python3-sphinx
Standards-Version: 4.1.3
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/debian-gis-team/fiona
Vcs-Git: https://salsa.debian.org/debian-gis-team/fiona.git
Homepage: https://github.com/Toblerity/Fiona
......
# Test installability
Depends: @
Test-Command: /bin/true
# Test module import (Python 2)
Depends: python-all, python-fiona
Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import fiona; import fiona.fio; print(fiona); print(fiona.fio)" ; done
# Test module import (Python 3)
Depends: python3-all, python3-fiona
Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import fiona; import fiona.fio; print(fiona); print(fiona.fio)" ; done