Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
before_install:
- pip install -U pip setuptools
install:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def get_version():
'astroid>=1.5,<1.6',
'six>=1.10.0,<2',
'typing>=3.5.3.0,<4',
'autopep8>=1.2.2,<2',
'autopep8>=1.3.4,<2',
],
extras_require={
'dev': [
Expand Down
4 changes: 3 additions & 1 deletion shopify_python/git_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def changed_python_files_in_tree(root_path):
('recursive', bool),
('select', typing.Set[str]),
('verbose', int),
('hang_closing', bool),
])


Expand All @@ -100,7 +101,8 @@ def autopep_files(files, max_line_length):
pep8_passes=-1,
recursive=False,
select={'W', 'E'},
verbose=0)
verbose=0,
hang_closing=False)
autopep8.fix_multiple_files(files, options, sys.stdout)


Expand Down