リビジョン | cbdc1ab429dd948a736a41ac03e7dd6ae3e752fb (tree) |
---|---|
日時 | 2019-10-16 21:59:59 |
作者 | ![]() |
コミッター | H. Turgut Uyar |
Use compatible version numbers for tox dependencies
@@ -63,32 +63,32 @@ | ||
63 | 63 | |
64 | 64 | [testenv] |
65 | 65 | deps = |
66 | - pytest==5.1.1 | |
67 | - webtest==2.0.33 | |
68 | - lxml==4.4.1 | |
66 | + pytest~=5.1 | |
67 | + webtest~=2.0 | |
68 | + lxml~=4.4 | |
69 | 69 | commands = |
70 | - {posargs:pytest} | |
70 | + {posargs:pytest} tests/ | |
71 | 71 | |
72 | 72 | [testenv:coverage] |
73 | 73 | deps = |
74 | 74 | {[testenv]deps} |
75 | - pytest-cov==2.7.1 | |
75 | + pytest-cov~=2.7 | |
76 | 76 | commands = |
77 | - {posargs:pytest} --cov-report term-missing --cov=humphrey tests | |
77 | + {posargs:pytest} --cov-report term-missing --cov=humphrey tests/ | |
78 | 78 | |
79 | 79 | [testenv:style] |
80 | 80 | deps = |
81 | - flake8==3.7.8 | |
82 | - flake8-isort==2.7.0 | |
83 | - flake8-docstrings==1.3.1 | |
81 | + flake8~=3.7 | |
82 | + flake8-isort~=2.7 | |
83 | + flake8-docstrings~=1.3 | |
84 | 84 | commands = |
85 | 85 | {posargs:flake8} humphrey |
86 | 86 | |
87 | 87 | [testenv:docs] |
88 | 88 | deps = |
89 | - sphinx==2.2.0 | |
90 | - sphinx_rtd_theme==0.4.3 | |
91 | - pygenstub==1.4.0 | |
89 | + sphinx~=2.2 | |
90 | + sphinx_rtd_theme~=0.4 | |
91 | + pygenstub~=1.4 | |
92 | 92 | changedir = docs/ |
93 | 93 | commands = |
94 | 94 | sphinx-build -b html source/ build/html/ |