From 761f3c10fa036e6b43b6c76263a55798ba05637d Mon Sep 17 00:00:00 2001
From: thomaswoehlke <thomas.woehlke@gmail.com>
Date: Thu, 29 Apr 2021 17:40:17 +0200
Subject: [PATCH] working on: 0.0.32 Release

---
 .gitignore |  1 +
 build.sh   | 76 ------------------------------------------------------
 2 files changed, 1 insertion(+), 76 deletions(-)
 delete mode 100755 build.sh

diff --git a/.gitignore b/.gitignore
index 58ff2f2f..5c6b938c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1146,3 +1146,4 @@ dump.rdb
 /logfile5.txt
 /logfile*.txt
 /src/covid19/static/vendor/
+/.checkmate/
diff --git a/build.sh b/build.sh
deleted file mode 100755
index a4996a30..00000000
--- a/build.sh
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/usr/bin/env bash
-
-function setup_venv() {
-    conda deactivate
-    deactivate
-    rm -rf venv
-    python -m venv venv
-    venv/bin/activate
-}
-
-function pip_compile() {
-  pip-compile -r requirements/build.in
-  pip-compile -r requirements/docs.in
-  pip-compile -r requirements/tests.in
-  pip-compile -r requirements/dev.in
-  . scripts/script_get_python_requirements_from_txt.sh
-  pip check
-}
-
-function pip_install() {
-  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
-}
-
-function build_setup() {
-  python setup.py develop
-  pip install -e .
-  pip check
-}
-
-function pip_install_via_setup_py() {
-   pip install -e .
-}
-
-function build_wheel() {
-  python -m pip install --upgrade pip
-  pip install setuptools wheel twine
-  # python setup.py sdist bdist_wheel
-  python -m build --wheel
-  pip check
-}
-
-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
-  pip_install
-  pip_compile
-  # build_wheel
-  build_setup
-  npm_install
-}
-
-function main() {
-  # setup_venv
-  pip_compile
-  pip_install
-  pip_install_via_setup_py
-  build_wheel
-  npm_install
-}
-
-# prepare_edit_setup_py
-first_install
-#main
-- 
GitLab