Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ deps =
configobj==5.0.6
requests==2.9.1
# test-requirements
httpretty==0.9.6
mock==1.3.0
pytest-catchlog==1.2.1

[testenv:xenial]
Expand All @@ -91,6 +89,7 @@ basepython = python3
deps =
# Refer to the comment in [xenial-shared-deps] for details
{[xenial-shared-deps]deps}
httpretty==0.8.6
jsonpatch==1.10
pytest==2.8.7

Expand All @@ -108,6 +107,10 @@ basepython = {[testenv:xenial]basepython}
deps =
# Refer to the comment in [xenial-shared-deps] for details
{[xenial-shared-deps]deps}
# httpretty in xenial is 0.8.6, not 0.9.5. The oldest version to work with
# Python 3.7+ is 0.9.5, because it is the first to include this commit:
# https://github.com/gabrielfalcao/HTTPretty/commit/5776d97da3992b9071db5e21faf175f6e8729060
httpretty==0.9.5
# jsonpatch in xenial is 1.10, not 1.19 (#839779). The oldest version
# to work with python3.6 is 1.16 as found in Artful. To keep default
# invocation of 'tox' happy, accept the difference in version here.
Expand Down