From bff6b4d6a285240421aa28a45693ac7b4eea7c71 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Fri, 27 Oct 2023 19:17:15 +1100 Subject: [PATCH] Switched from direct setup.py invocation to "pip install ." --- Tests/oss-fuzz/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/oss-fuzz/build.sh b/Tests/oss-fuzz/build.sh index 37fad7bc868..3aa6c7f6a24 100755 --- a/Tests/oss-fuzz/build.sh +++ b/Tests/oss-fuzz/build.sh @@ -15,7 +15,7 @@ # ################################################################################ -python3 setup.py build --build-base=/tmp/build install +python3 -m pip install . # Build fuzzers in $OUT. for fuzzer in $(find $SRC -name 'fuzz_*.py'); do