Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tox.ini: use xenial version of jsonpatch in CI #242

Merged
merged 1 commit into from
Mar 11, 2020
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
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,6 @@ deps =
pyserial==3.0.1
configobj==5.0.6
requests==2.9.1
# 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.
jsonpatch==1.16
six==1.10.0
# test-requirements
httpretty==0.9.6
Expand All @@ -91,6 +87,7 @@ basepython = python3
deps =
# Refer to the comment in [xenial-shared-deps] for details
{[xenial-shared-deps]deps}
jsonpatch==1.10
pytest==2.8.7

[testenv:xenial-dev]
Expand All @@ -99,6 +96,10 @@ basepython = {[testenv:xenial]basepython}
deps =
# Refer to the comment in [xenial-shared-deps] for details
{[xenial-shared-deps]deps}
# 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.
jsonpatch==1.16
pytest==3.0.7

[testenv:tip-pycodestyle]
Expand Down