From 8e0bf7a42fa3dbfa08f6d6bc2e311d2208d592f3 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Mon, 31 Jan 2022 21:31:15 +0400 Subject: [PATCH] Fix urllib3 install procedure (#7205) * Fix urllib3 install procedure We switched from setuptools to Flit, and running setup.py is deprecated anyway. * Invoke pip from python3 Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com> Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com> --- projects/urllib3/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/urllib3/build.sh b/projects/urllib3/build.sh index 6eaf4d518..e6c355a4d 100644 --- a/projects/urllib3/build.sh +++ b/projects/urllib3/build.sh @@ -15,7 +15,7 @@ # ################################################################################ -python3 setup.py install +python3 -m pip install . # Build fuzzers in $OUT. for fuzzer in $(find $SRC -name 'fuzz_*.py'); do