Skip to content
Commits on Source (2)
python-pyproj (1.9.5.1-4) UNRELEASED; urgency=medium
* Update copyright-format URL to use HTTPS.
* Bump Standards-Version to 4.1.3, no changes.
* Bump Standards-Version to 4.1.4, no changes.
* Check DEB_BUILD_PROFILES for nocheck in dh_auto_test override.
* Rename PROJ.4 to PROJ.
* Update Vcs-* URLs for Salsa.
* Add module import tests to autopkgtest configuration.
-- Bas Couwenberg <sebastic@debian.org> Sun, 21 Jan 2018 10:39:51 +0100
......
......@@ -13,7 +13,7 @@ Build-Depends: debhelper (>= 9),
python3-setuptools,
python3-numpy,
libproj-dev (>= 4.9.0~)
Standards-Version: 4.1.3
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/debian-gis-team/python-pyproj
Vcs-Git: https://salsa.debian.org/debian-gis-team/python-pyproj.git
Homepage: https://github.com/jswhit/pyproj
......
# Test installability
Depends: @
Test-Command: /bin/true
# Test module import (Python 2)
Depends: python-all, python-pyproj
Test-Command: set -e ; for py in $(pyversions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import pyproj; print(pyproj)" ; done
# Test module import (Python 3)
Depends: python3-all, python3-pyproj
Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$ADTTMP" ; echo "Testing with $py:" ; $py -c "import pyproj; print(pyproj)" ; done