Skip to content
Commits on Source (3)
python-shapely (1.6.4-2) UNRELEASED; urgency=medium
* Update Vcs-* URLs for Salsa.
* Add module import tests to autopkgtest configuration.
* Bump Standards-Version to 4.1.4, no changes.
-- Bas Couwenberg <sebastic@debian.org> Sat, 31 Mar 2018 12:57:43 +0200
......
......@@ -26,9 +26,9 @@ Build-Depends: debhelper (>= 9),
cython,
cython3,
libjs-mathjax
Standards-Version: 4.1.3
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/python-shapely.git
Vcs-Git: https://anonscm.debian.org/git/pkg-grass/python-shapely.git
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/debian-gis-team/python-shapely
Vcs-Git: https://salsa.debian.org/debian-gis-team/python-shapely.git
Homepage: http://toblerity.org/shapely
X-Python-Version: >= 2.6
X-Python3-Version: >= 3.2
......
# Test installability
Depends: @
Test-Command: /bin/true
# Test module import (Python 2)
Depends: python-all, python-shapely
Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import shapely; print(shapely)" ; done
# Test module import (Python 3)
Depends: python3-all, python3-shapely
Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import shapely; print(shapely)" ; done