diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2016-12-23 14:35:55 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-12-23 16:44:47 -0500 |
commit | 46a195f4433876f2c6bafeb35a8ec2ed617da396 (patch) | |
tree | 184ad8a3e80ac40bd1da6a617b86f2646847ea50 /.arc-linters | |
parent | 158530a5450b27eb5ae2d75b7895fd1662dde13b (diff) | |
download | haskell-46a195f4433876f2c6bafeb35a8ec2ed617da396.tar.gz |
Use python3 for linters
We now require python3 for the testsuite so rather than require two
versions of python it makes sense to use python3 for the linters as
well.
Reviewers: austin, bgamari
Reviewed By: bgamari
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D2888
Diffstat (limited to '.arc-linters')
-rwxr-xr-x | .arc-linters/check-binaries.py | 2 | ||||
-rwxr-xr-x | .arc-linters/check-cpp.py | 2 | ||||
-rw-r--r-- | .arc-linters/check-makefiles.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.arc-linters/check-binaries.py b/.arc-linters/check-binaries.py index 85227eaa4e..017b89bff0 100755 --- a/.arc-linters/check-binaries.py +++ b/.arc-linters/check-binaries.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # A linter to warn when binary files are added to the repository diff --git a/.arc-linters/check-cpp.py b/.arc-linters/check-cpp.py index f9d0552b00..7abbc31219 100755 --- a/.arc-linters/check-cpp.py +++ b/.arc-linters/check-cpp.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # A linter to warn for ASSERT macros which are separated from their argument # list by a space, which Clang's CPP barfs on diff --git a/.arc-linters/check-makefiles.py b/.arc-linters/check-makefiles.py index 7080954477..4778b2d51a 100644 --- a/.arc-linters/check-makefiles.py +++ b/.arc-linters/check-makefiles.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Warn for use of `--interactive` inside Makefiles (#11468). # |