Skip to content
Snippets Groups Projects
Commit c87547b3 authored by Sandro Tosi's avatar Sandro Tosi
Browse files

Drop python2 support; Closes: #938259

parent 244cd98b
No related branches found
No related tags found
No related merge requests found
python-webob (1:1.8.5-2) UNRELEASED; urgency=medium
[ Ondřej Nový ]
* Use debhelper-compat instead of debian/compat.
-- Ondřej Nový <onovy@debian.org> Fri, 19 Jul 2019 23:56:37 +0200
[ Sandro Tosi ]
* Drop python2 support; Closes: #938259
-- Sandro Tosi <morph@debian.org> Sun, 19 Jan 2020 16:53:26 -0500
python-webob (1:1.8.5-1) unstable; urgency=medium
......
......@@ -10,15 +10,10 @@ Uploaders:
Build-Depends:
debhelper-compat (= 9),
dh-python,
python-all,
python-setuptools,
python3-sphinx,
python3-all,
python3-setuptools,
Build-Depends-Indep:
python-doc,
python-pytest,
python-simplejson,
python3-doc,
python3-pytest,
python3-simplejson,
......@@ -27,25 +22,6 @@ Homepage: http://webob.org/
Vcs-Git: https://salsa.debian.org/python-team/modules/python-webob.git
Vcs-Browser: https://salsa.debian.org/python-team/modules/python-webob
Package: python-webob
Architecture: all
Depends:
python-simplejson,
${misc:Depends},
${python:Depends},
Suggests:
python-webob-doc,
Breaks:
python-pylons (<< 1.0.1),
Description: Python module providing WSGI request and response objects (Python 2)
WebOb provides wrappers around the WSGI request environment, and an object to
help create WSGI responses.
.
The objects map much of the specified behavior of HTTP, including header
parsing and accessors for other standard parts of the environment.
.
This is the Python 2 version of the package.
Package: python-webob-doc
Architecture: all
Section: doc
......
......@@ -5,11 +5,11 @@ export PYBUILD_NAME=webob
#export DH_VERBOSE=1
%:
dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
dh $@ --with python3,sphinxdoc --buildsystem=pybuild
override_dh_auto_test:
# enable network, tests.test_in_wsgiref.test_request_reading needs it
set -e ; for vers in 2.7 `py3versions -vr` ; do \
set -e ; for vers in `py3versions -vr` ; do \
http_proxy='' PYTHONPATH=.:$(CURDIR)/src python$$vers -m pytest tests ; \
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment