Use pip install setup.py (#7158)

This commit is contained in:
Simon Mo 2020-02-14 13:53:36 -08:00 committed by GitHub
parent fe6ce714a0
commit 30de1286bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,14 +26,14 @@ if [[ "$PYTHON" == "3.6" ]]; then
npm ci
npm run build
popd
python setup.py install --user
pip install -e . --verbose
popd
elif [[ "$LINT" == "1" ]]; then
export PATH="$HOME/miniconda/bin:$PATH"
pushd "$ROOT_DIR/../../python"
python setup.py install --user
pip install -e . --verbose
popd
else
echo "Unrecognized Python version."