From 5b467bd0c54f3daa3ab3b7137fbb60948741cd7e Mon Sep 17 00:00:00 2001 From: Kay0u Date: Wed, 22 Sep 2021 16:30:48 +0200 Subject: [PATCH] Bump yunorunner version --- README.md | 2 +- manifest.json | 2 +- scripts/_common.sh | 2 +- scripts/install | 3 --- scripts/restore | 3 --- scripts/upgrade | 3 --- 6 files changed, 3 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 98ce024..6732514 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Overview YunoRunner is our own CI runner for YunoHost Apps -**Shipped version:** 2021-03-05 +**Shipped version:** 2021-09-22 ## Screenshots diff --git a/manifest.json b/manifest.json index 3530445..3b420c7 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "CI runner of YunoHost", "fr": "Runner d'intégration continue de YunoHost" }, - "version": "2021-03-05~ynh1", + "version": "2021-09-22~ynh1", "url": "https://github.com/YunoHost/yunorunner", "license": "GPL-3.0-or-later", "maintainer": { diff --git a/scripts/_common.sh b/scripts/_common.sh index 3ecbdc2..88c8417 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -9,7 +9,7 @@ pkg_dependencies="python3-venv python3-dev python3-pip sqlite3" yunorunner_repository="https://github.com/YunoHost/yunorunner" -yunorunner_release="444de3ae11db85294b6839b79b603e2d86b0a662" +yunorunner_release="0e87f07e8bcb1f3aee055a694f3c7198e22b4019" #================================================= # PERSONAL HELPERS diff --git a/scripts/install b/scripts/install index 4cb2ff6..f33c59b 100644 --- a/scripts/install +++ b/scripts/install @@ -110,9 +110,6 @@ pushd $final_path python3 -m venv venv venv/bin/pip install --upgrade pip venv/bin/pip install -r requirements-frozen.txt - #Fix current websocket version error (2019-02-14) - venv/bin/pip uninstall -y websockets - venv/bin/pip install 'websockets>=6.0,<7.0' popd #================================================= diff --git a/scripts/restore b/scripts/restore index dc2d712..ff8d889 100644 --- a/scripts/restore +++ b/scripts/restore @@ -94,9 +94,6 @@ pushd $final_path python3 -m venv venv venv/bin/pip install --upgrade pip venv/bin/pip install -r requirements-frozen.txt - #Fix current websocket version error (2019-02-14) - venv/bin/pip uninstall -y websockets - venv/bin/pip install 'websockets>=6.0,<7.0' popd #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 392ee1a..1d7d5eb 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -149,9 +149,6 @@ pushd $final_path python3 -m venv venv venv/bin/pip install --upgrade pip venv/bin/pip install -r requirements-frozen.txt - #Fix current websocket version error (2019-02-14) - venv/bin/pip uninstall -y websockets - venv/bin/pip install 'websockets>=6.0,<7.0' popd #=================================================