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>
This commit is contained in:
Quentin Pradet 2022-01-31 21:31:15 +04:00 committed by GitHub
parent fa3db7e07b
commit 8e0bf7a42f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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