Skip to content

Commit 0981819

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

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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):

0 commit comments

Comments
 (0)