Skip to content

Commit

Permalink
Pin flake8 and deps, update setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Mar 1, 2015
1 parent c326dee commit 6b770cc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
18 changes: 14 additions & 4 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
# Task running
invoke

# Testing
pytest
flake8
tox>=1.5.0
wheel
invoke
Flask>=0.10.1
mock
webtest

# Distribution
wheel

# Web frameworks
Flask>=0.10.1
Django>=1.6.5
bottle>=0.12.3
tornado>=4.0
pyramid>=1.5.2

# Syntax checking
pep8==1.6.1
flake8>=2.2.2
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
universal = 1

[flake8]
ignore = E127,E128,E265,E302,N803,N804,N806
ignore = E127,E128,E265,E302,N803,N804,N806,E731,E402
max-line-length = 95
exclude = .git,.ropeproject,.tox,docs,.git,setup.py,compat.py
exclude = .git,.ropeproject,.tox,docs,.git,setup.py,compat.py,build
3 changes: 1 addition & 2 deletions webargs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# -*- coding: utf-8 -*-
from webargs.core import Arg, WebargsError, ValidationError, RequiredArgMissingError, Missing

__version__ = '0.10.0'
__author__ = 'Steven Loria'
__license__ = 'MIT'


from webargs.core import Arg, WebargsError, ValidationError, RequiredArgMissingError, Missing

__all__ = ['Arg', 'WebargsError', 'ValidationError', 'RequiredArgMissingError', 'Missing']

0 comments on commit 6b770cc

Please sign in to comment.