From 3040c41acfee89fa38a85d4b331d9be90b6ae8a4 Mon Sep 17 00:00:00 2001 From: BenediktMKuehne Date: Fri, 12 Jul 2024 11:26:52 +0000 Subject: [PATCH] update pipfile --- Pipfile.lock | 12 ++++++------ VERSION.txt | 2 +- dev-tools/update_pipenv.sh | 7 +++---- 3 files changed, 10 insertions(+), 11 deletions(-) mode change 100644 => 100755 dev-tools/update_pipenv.sh diff --git a/Pipfile.lock b/Pipfile.lock index 356bb6a3..06ccc804 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -383,7 +383,7 @@ "sha256:8440ffe49c4ae81a8df57c1ae1eb4b6bfa7acb830099bfb3e305b383005cc128" ], "index": "pypi", - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1'", + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.3.5" }, "mod-wsgi-httpd": { @@ -596,7 +596,7 @@ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.16.0" }, "sqlparse": { @@ -735,11 +735,11 @@ "develop": { "astroid": { "hashes": [ - "sha256:8ead48e31b92b2e217b6c9733a21afafe479d52d6e164dd25fb1a770c7c3cf94", - "sha256:e8a0083b4bb28fcffb6207a3bfc9e5d0a68be951dd7e336d5dcf639c682388c0" + "sha256:3eae9ea67c11c858cdd2c91337d2e816bd019ac897ca07d7b346ac10105fceb3", + "sha256:7099b5a60985529d8d46858befa103b82d0d05a5a5e8b816b5303ed96075e1d9" ], "markers": "python_full_version >= '3.8.0'", - "version": "==3.2.2" + "version": "==3.2.3" }, "attrs": { "hashes": [ @@ -1108,7 +1108,7 @@ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'", + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==1.16.0" }, "sniffio": { diff --git a/VERSION.txt b/VERSION.txt index 74d6185b..1b1e568d 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -0.1-02a5f8d9 \ No newline at end of file +0.1-d35439e6 \ No newline at end of file diff --git a/dev-tools/update_pipenv.sh b/dev-tools/update_pipenv.sh old mode 100644 new mode 100755 index a021d58e..c9145be2 --- a/dev-tools/update_pipenv.sh +++ b/dev-tools/update_pipenv.sh @@ -11,18 +11,17 @@ # Description: Automates updating the pipfile - # 1. find out which installation -local lINSTALL="" +INSTALL="" -lINSTALL="deploy" +INSTALL="deploy" if grep -q "EMBARK_INSTALL=dev" ./.env ; then INSTALL="dev" fi # 2. update pipfile -if [[ lINSTALL == "dev" ]]: +if [[ "${INSTALL}" == "dev" ]]; then MYSQLCLIENT_LDFLAGS='-L/usr/mysql/lib -lmysqlclient -lssl -lcrypto -lresolv' MYSQLCLIENT_CFLAGS='-I/usr/include/mysql/' PIPENV_VENV_IN_PROJECT=1 pipenv update else echo "This is not a developer setup...still trying to update"