From 00fdb0adc392ff15ef8286358d6789332b3b37ab Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Wed, 28 Apr 2021 12:14:02 +0200 Subject: [PATCH] working on: 0.0.32 Release --- build.sh | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 522c0b8d..f01b2f34 100755 --- a/build.sh +++ b/build.sh @@ -43,6 +43,21 @@ function npm_install() { npm install } +function first_install() { + python setup.py develop + python -m pip install --upgrade pip + pip install setuptools wheel twine + pip install -r requirements\build.in + pip install -r requirements\docs.in + pip install -r requirements\tests.in + pip install -r requirements\dev.in + pip check + pip install -e . + pip check + python setup.py develop + pip check +} + function main() { # setup_venv pip_compile @@ -52,4 +67,5 @@ function main() { npm_install } -main +first_install +# main -- GitLab