Skip to content

Commit 13bb08e

Browse files
committed
Fix failing tox build
Add upper version constraint to apispec and ignore flake8 warning. PyCQA/pycodestyle#498
1 parent 535fc9d commit 13bb08e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ universal=1
1010
# E301: expected 1 blank line, found 1
1111
# E302: expected 2 blank lines, found 0
1212
[flake8]
13-
ignore = E127,E128,E265,E301,E302
13+
ignore = E127,E128,E265,E301,E302,W504
1414
max-line-length = 90

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
'flask>=0.10.1',
1010
'marshmallow>=2.0.0',
1111
'webargs>=0.18.0',
12-
'apispec>=0.17.0',
12+
'apispec>=0.17.0,<1.0.0b1',
1313
]
1414

1515
def find_version(fname):

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py27,py35,py36,pypy
2+
envlist=py27,py36,py37,pypy
33
[testenv]
44
deps=
55
-rdev-requirements.txt

0 commit comments

Comments
 (0)