diff --git a/build.sh b/build.sh index 4a0ec339864eba87c54b048d669338419be8d687..238a03179d342a19265cd3fbb9ec2c8acf04f230 100755 --- a/build.sh +++ b/build.sh @@ -43,6 +43,11 @@ function npm_install() { npm install } +function prepare_edit_setup_py() { + pip_compile + # pip_install +} + function first_install() { python -m pip install setuptools wheel python -m pip install --upgrade pip @@ -62,5 +67,6 @@ function main() { npm_install } -first_install +prepare_edit_setup_py +# first_install # main