From 46a195f4433876f2c6bafeb35a8ec2ed617da396 Mon Sep 17 00:00:00 2001 From: Matthew Pickering Date: Fri, 23 Dec 2016 14:35:55 -0500 Subject: 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 --- .arclint | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.arclint') diff --git a/.arclint b/.arclint index 7eaced6b35..95355e2898 100644 --- a/.arclint +++ b/.arclint @@ -71,17 +71,17 @@ }, "check-binaries": { "type": "external-json", - "external-json.script": "python .arc-linters/check-binaries.py" + "external-json.script": "python3 .arc-linters/check-binaries.py" }, "check-makefiles": { "type": "external-json", "include": ["(Makefile$)"], - "external-json.script": "python .arc-linters/check-makefiles.py" + "external-json.script": "python3 .arc-linters/check-makefiles.py" }, "bad-assert-clang-cpp": { "type": "external-json", "include": ["(\\.(l?hs|x|y\\.pp)(\\.in)?$)", "(\\.(c|h)$)"], - "external-json.script": "python .arc-linters/check-cpp.py" + "external-json.script": "python3 .arc-linters/check-cpp.py" } }, -- cgit v1.2.1