diff -Nru pytest-httpbin-1.0.0/debian/changelog pytest-httpbin-1.0.0/debian/changelog --- pytest-httpbin-1.0.0/debian/changelog 2019-07-20 21:07:23.000000000 +0000 +++ pytest-httpbin-1.0.0/debian/changelog 2019-08-21 18:31:11.000000000 +0000 @@ -1,3 +1,10 @@ +pytest-httpbin (1.0.0-2) unstable; urgency=medium + + * Team upload. + * Drop Python 2 support. + + -- Andrey Rahmatullin Wed, 21 Aug 2019 23:31:11 +0500 + pytest-httpbin (1.0.0-1) unstable; urgency=medium [ Ondřej Nový ] diff -Nru pytest-httpbin-1.0.0/debian/control pytest-httpbin-1.0.0/debian/control --- pytest-httpbin-1.0.0/debian/control 2019-07-20 21:04:25.000000000 +0000 +++ pytest-httpbin-1.0.0/debian/control 2019-08-21 18:31:11.000000000 +0000 @@ -6,16 +6,6 @@ Build-Depends: debhelper-compat (= 12), dh-python, pandoc, - python-all, - python-decorator, - python-flask, - python-httpbin, - python-ipaddress, - python-pytest, - python-requests, - python-setuptools, - python-six, - python-werkzeug, python3-all, python3-decorator, python3-flask, @@ -31,18 +21,6 @@ Vcs-Git: https://salsa.debian.org/python-team/modules/pytest-httpbin.git Vcs-Browser: https://salsa.debian.org/python-team/modules/pytest-httpbin -Package: python-pytest-httpbin -Architecture: all -Depends: python-ipaddress, python-pytest, ${misc:Depends}, ${python:Depends} -Description: py.test plugin providing a local httpbin - httpbin is a WSGI based test server for testing HTTP applications. - pytest-httpbin creates a fixture for the py.test framework that - is dependency-injected into tests, it automatically starts up a - local running instance of httpbin in a separate thread and - provides the test with the URL in the fixture. - . - This package provides the py.test plugin for Python 2 code. - Package: python3-pytest-httpbin Architecture: all Depends: python3-pytest, ${misc:Depends}, ${python3:Depends} diff -Nru pytest-httpbin-1.0.0/debian/rules pytest-httpbin-1.0.0/debian/rules --- pytest-httpbin-1.0.0/debian/rules 2019-07-20 20:03:15.000000000 +0000 +++ pytest-httpbin-1.0.0/debian/rules 2019-08-21 18:31:11.000000000 +0000 @@ -4,7 +4,7 @@ export PYBUILD_NAME=pytest-httpbin %: - dh $@ --with python2,python3 --buildsystem=pybuild + dh $@ --with python3 --buildsystem=pybuild override_dh_auto_test: diff -Nru pytest-httpbin-1.0.0/debian/tests/control pytest-httpbin-1.0.0/debian/tests/control --- pytest-httpbin-1.0.0/debian/tests/control 2019-07-20 21:01:59.000000000 +0000 +++ pytest-httpbin-1.0.0/debian/tests/control 2019-08-21 18:31:11.000000000 +0000 @@ -1,15 +1,3 @@ -Tests: python-pytest-httpbin -Depends: python-all, - python-decorator, - python-flask, - python-httpbin, - python-ipaddress, - python-pytest, - python-pytest-httpbin, - python-requests, - python-six, - python-werkzeug - Tests: python3-pytest-httpbin Depends: python3-all, python3-decorator, diff -Nru pytest-httpbin-1.0.0/debian/tests/python-pytest-httpbin pytest-httpbin-1.0.0/debian/tests/python-pytest-httpbin --- pytest-httpbin-1.0.0/debian/tests/python-pytest-httpbin 2019-07-20 20:03:15.000000000 +0000 +++ pytest-httpbin-1.0.0/debian/tests/python-pytest-httpbin 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -#!/bin/sh -set -e -for py in $(pyversions -i); do echo "[*] testing on $py:"; $py -Wd -m pytest -v -x -s 2>&1; done