Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed May 21, 2018
2 parents 1eb5a3b + 9f06de2 commit 60afb7d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
[flake8]
ignore = W191,W503
ignore =
# Allow tabs for indentation
W191
# W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513
W503
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm>=1.15"]
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
extras_require={
'testing': [
# upstream
'pytest>=2.8',
'pytest-sugar',
'pytest>=3.5',
'pytest-sugar>=0.9.1',
'collective.checkdocs',
'pytest-flake8',

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ minversion = 2.4
deps =
setuptools>=31.0.1
# workaround for yaml/pyyaml#126
# git+https://github.com/yaml/pyyaml@master#egg=pyyaml
# git+https://github.com/yaml/pyyaml@master#egg=pyyaml;python_version=="3.7"
commands =
py.test {posargs}
python setup.py checkdocs
Expand Down

0 comments on commit 60afb7d

Please sign in to comment.