diff --git a/INSTALL.md b/INSTALL.md index fb202c09d..88ec58d41 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -15,7 +15,6 @@ Here are the prerequisites to be able to compile Infer on MacOSX. This is required to compile everything from source. - opam >= 2.0.0 (instructions [here](https://opam.ocaml.org/doc/Install.html#OSX)) -- Python 2.7 - sqlite - pkg-config - Java (only needed for the Java analysis) @@ -42,7 +41,6 @@ Here are the prerequisites to be able to compile Infer on Linux. This is required to compile everything from source. - opam >= 2.0.0 -- Python 2.7 - pkg-config - Java (only needed for the Java analysis) - gcc >= 5.X or clang >= 3.4 (only needed for the C/Objective-C analysis) diff --git a/configure.ac b/configure.ac index a298b2627..7a4ffd927 100644 --- a/configure.ac +++ b/configure.ac @@ -137,9 +137,6 @@ AS_IF([test "x$enable_c_analyzers" = "xyes"], [ ]) # end if($enable_c_analyzers) -AC_CHECK_TOOL([PYTHON27], [python2.7], [no]) -AC_ASSERT_PROG([python2.7], [$PYTHON27]) - AC_CHECK_TOOL([XCODE_SELECT], [xcode-select], [no]) AS_IF([test "x$XCODE_SELECT" != "xno"], [XCODE_SELECT_OUT=`xcode-select -p`]) diff --git a/facebook-clang-plugins b/facebook-clang-plugins index bab391974..48d27425e 160000 --- a/facebook-clang-plugins +++ b/facebook-clang-plugins @@ -1 +1 @@ -Subproject commit bab39197465689e39b2462f052d2895fe13c1a60 +Subproject commit 48d27425e9e9e8d0bace06e9e7893cb23b21a2a4 diff --git a/infer/tests/testlock.py b/infer/tests/testlock.py index ccb09a93d..ce672358b 100755 --- a/infer/tests/testlock.py +++ b/infer/tests/testlock.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.7 +#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. #