Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configure flake8's line length as 100 #124

Merged
merged 1 commit into from
Nov 16, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ commands =
py27,py35,py36: pytest -v --cov=numcodecs numcodecs
py37: pytest -v --cov=numcodecs --doctest-modules --doctest-glob=*.pyx numcodecs
coverage report -m
py37: flake8 --max-line-length=100 numcodecs
py37: flake8 numcodecs
pip freeze
deps =
py27: backports.lzma
Expand All @@ -31,3 +31,6 @@ deps =
-rrequirements_rtfd.txt
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html

[flake8]
max-line-length = 100