From 98591406728ffc92714a86af066bb43b42eb0152 Mon Sep 17 00:00:00 2001 From: BO ZHANG Date: Thu, 22 Sep 2022 14:07:48 +0800 Subject: [PATCH] tweaks in build script --- pipelines/build.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pipelines/build.sh b/pipelines/build.sh index 4044e2d..dcd79d8 100644 --- a/pipelines/build.sh +++ b/pipelines/build.sh @@ -21,11 +21,15 @@ which pip echo " > python --version" python --version -echo "===================== isntall requirements =====================" +echo "===================== install requirements =====================" pip install -r requirements.txt echo "===================== install package =====================" -sh install_local.sh +rm -rf dist +#python setup.py build_ext --inplace +#python setup.py install +python setup.py sdist +pip install dist/*.tar.gz --force-reinstall echo "===================== show package info =====================" echo " > pip show $JOB_NAME" -- GitLab