Skip to content

Commit feef6b8

Browse files
committed
Merge remote-tracking branch 'poldracklab/master' into sbref
2 parents 8d389ee + f3f5fad commit feef6b8

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

.pep8speaks.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
scanner:
2+
diff_only: True # Only show errors caused by the patch
3+
linter: flake8
4+
5+
message: # Customize the comment made by the bot
6+
opened: # Messages when a new PR is submitted
7+
header: "Hello @{name}, thank you for submitting the Pull Request!"
8+
footer: "To test for issues locally, `pip install flake8` and then run `flake8 niworkflows`."
9+
updated: # Messages when new commits are added to the PR
10+
header: "Hello @{name}, Thank you for updating!"
11+
footer: "To test for issues locally, `pip install flake8` and then run `flake8 niworkflows`."
12+
no_errors: "Cheers! There are no style issues detected in this Pull Request. :beers: "

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@ duecredit =
7070
pointclouds =
7171
pyntcloud
7272
style =
73-
flake8 < 3.0
74-
flake8-putty
73+
flake8 >= 3.7.0
7574
test =
7675
pytest >= 4.4
7776
pytest-xdist >= 1.28

tox.ini

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
max-line-length = 99
33
doctests = False
44
exclude=*build/
5-
putty-ignore =
6-
*/__init__.py : +F401
7-
docs/conf.py : +E265
8-
/^\s*\.\. _.*?: http/ : +E501
5+
per-file-ignores =
6+
**/__init__.py : F401
7+
docs/conf.py : E265
98

109
[pytest]
1110
norecursedirs = .git

0 commit comments

Comments
 (0)