diff -Nru flask-jwt-simple-0.0.3/debian/changelog flask-jwt-simple-0.0.3/debian/changelog --- flask-jwt-simple-0.0.3/debian/changelog 2019-08-05 12:30:57.000000000 +0000 +++ flask-jwt-simple-0.0.3/debian/changelog 2020-03-06 21:50:25.000000000 +0000 @@ -1,3 +1,12 @@ +flask-jwt-simple (0.0.3-2) unstable; urgency=medium + + * d/tests: Fix tests (Closes: #945767). + * d/control: Bump Standards-Version to 4.5.0. + * d/gbp.conf: Set debian/master as default branch. + * d/control: Update my email contact. + + -- Emmanuel Arias Fri, 06 Mar 2020 18:50:25 -0300 + flask-jwt-simple (0.0.3-1) unstable; urgency=medium * Initial release (Closes: #934101) diff -Nru flask-jwt-simple-0.0.3/debian/control flask-jwt-simple-0.0.3/debian/control --- flask-jwt-simple-0.0.3/debian/control 2019-08-05 12:30:57.000000000 +0000 +++ flask-jwt-simple-0.0.3/debian/control 2020-03-06 21:50:25.000000000 +0000 @@ -2,14 +2,15 @@ Section: python Priority: optional Maintainer: Debian Python Modules Team -Uploaders: Emmanuel Arias +Uploaders: Emmanuel Arias Build-Depends: debhelper-compat (= 12), dh-python, python3-flask, python3-jwt, python3-all, - python3-setuptools -Standards-Version: 4.4.0 + python3-setuptools, + tox, +Standards-Version: 4.5.0 Homepage: https://github.com/vimalloc/flask-jwt-simple Vcs-Browser: https://salsa.debian.org/python-team/modules/python-flask-jwt-simple Vcs-Git: https://salsa.debian.org/python-team/modules/python-flask-jwt-simple.git diff -Nru flask-jwt-simple-0.0.3/debian/gbp.conf flask-jwt-simple-0.0.3/debian/gbp.conf --- flask-jwt-simple-0.0.3/debian/gbp.conf 1970-01-01 00:00:00.000000000 +0000 +++ flask-jwt-simple-0.0.3/debian/gbp.conf 2020-03-06 21:50:25.000000000 +0000 @@ -0,0 +1,2 @@ +[DEFAULT] +debian-branch = debian/master diff -Nru flask-jwt-simple-0.0.3/debian/tests/python3-flask-jwt-simple flask-jwt-simple-0.0.3/debian/tests/python3-flask-jwt-simple --- flask-jwt-simple-0.0.3/debian/tests/python3-flask-jwt-simple 2019-08-05 12:30:57.000000000 +0000 +++ flask-jwt-simple-0.0.3/debian/tests/python3-flask-jwt-simple 2020-03-06 21:50:25.000000000 +0000 @@ -10,10 +10,7 @@ SRCDIR=$(pwd) -cp -rv $(SRCIDR)/tests ${AUTOPKGTEST_TMP} -cd ${AUTOPKGTEST_TMP} - -for py in $(py3versions -i); do - $py -m pytest -v -s tests -done +cp -rv ${SRCDIR} ${AUTOPKGTEST_TMP} +cd ${AUTOPKGTEST_TMP}/src +tox -e py3