Travis: only need to avoid tox==3.7.0

tox 3.7.1 (or whatever's next) will fix the issue described in 976bca1.
This commit is contained in:
medmunds
2019-02-19 17:30:45 -08:00
parent e91d95a41e
commit a283def798
2 changed files with 3 additions and 3 deletions

View File

@@ -60,8 +60,8 @@ matrix:
cache: pip
install:
# pin tox to avoid https://github.com/tox-dev/tox/issues/1160
- pip install tox~=3.6.1
# avoid https://github.com/tox-dev/tox/issues/1160
- pip install tox!=3.7.0
script:
- tox

View File

@@ -19,7 +19,7 @@ flake8 = "*"
mock = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
tox = "~=3.6.1"
tox = "!=3.7.0"
twine = "*"
[requires]