Codebase list responses / 0707f82
Drop python2 support; Closes: #938358 Sandro Tosi 4 years ago
4 changed file(s) with 6 addition(s) and 22 deletion(s). Raw diff Collapse all Expand all
00 responses (0.9.0-2) UNRELEASED; urgency=medium
11
2 [ Ondřej Nový ]
23 * d/tests: Use AUTOPKGTEST_TMP instead of ADTTMP
34 * d/changelog: Remove trailing whitespaces
45 * Convert git repository from git-dpm to gbp layout
56 * Use debhelper-compat instead of debian/compat.
67
7 -- Ondřej Nový <onovy@debian.org> Tue, 17 Apr 2018 13:17:01 +0200
8 [ Sandro Tosi ]
9 * Drop python2 support; Closes: #938358
10
11 -- Sandro Tosi <morph@debian.org> Tue, 24 Dec 2019 10:46:29 -0500
812
913 responses (0.9.0-1) unstable; urgency=medium
1014
44 Uploaders: Andrew Starr-Bochicchio <asb@debian.org>
55 Build-Depends: debhelper-compat (= 9),
66 dh-python,
7 python-all (>= 2.6.6-3~),
87 python3-all,
9 python-cookies,
108 python3-cookies,
11 python-mock,
129 python3-mock,
13 python-pytest,
1410 python3-pytest,
15 python-pytest-localserver,
1611 python3-pytest-localserver,
17 python-requests,
1812 python3-requests,
19 python-setuptools,
2013 python3-setuptools
2114 Standards-Version: 4.1.3
2215 Homepage: https://github.com/getsentry/responses
2316 Vcs-Git: https://salsa.debian.org/python-team/modules/responses.git
2417 Vcs-Browser: https://salsa.debian.org/python-team/modules/responses
25
26 Package: python-responses
27 Architecture: all
28 Depends: ${misc:Depends},
29 ${python:Depends}
30 Description: Utility library for mocking out the requests Python library
31 responses is a module used to mock out the `requests' Python library in
32 order to perform unit tests.
33 .
34 This package provides the Python 2 module.
3518
3619 Package: python3-responses
3720 Architecture: all
66 export PYBUILD_AFTER_TEST=rm -f {dir}/test_responses.py; rm -f {build_dir}/test_responses.py
77
88 %:
9 dh $@ --with python2,python3 --buildsystem=pybuild
9 dh $@ --with python3 --buildsystem=pybuild
0 Depends: python-responses
1 Test-Command: cd "$AUTOPKGTEST_TMP" ; python -c "import responses; print responses.RequestsMock()"
2
30 Depends: python3-responses
41 Test-Command: cd "$AUTOPKGTEST_TMP" ; python3 -c "import responses; print(responses.RequestsMock())"