mirror of https://github.com/google/oss-fuzz.git
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:
parent
fa3db7e07b
commit
8e0bf7a42f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue