https://github.com/galaxyproject/galaxy
Revision 99c8f54a77c436125359f17a8d681f115e157742 authored by John Chilton on 18 May 2016, 11:43:10 UTC, committed by John Chilton on 18 May 2016, 11:43:10 UTC
1 parent 8195d81
Raw File
Tip revision: 99c8f54a77c436125359f17a8d681f115e157742 authored by John Chilton on 18 May 2016, 11:43:10 UTC
Update version to 16.04
Tip revision: 99c8f54
setup.cfg
[flake8]
# These are exceptions allowed (encouraged?) by Galaxy style guidelines.
# 128 continuation line under-indented for visual indent
# 201 and 202 are spaces after ( and before )
# 203 whitespace before ':'
# 402 module level import not at top of file # TODO, we would like to improve this.
# 501 is line length
ignore = E128,E201,E202,E203,E501,E402
back to top