1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yunorunner_ynh.git synced 2024-09-03 20:36:13 +02:00

Merge pull request #18 from YunoHost-Apps/testing

Bump yunorunner version
This commit is contained in:
Kayou 2021-09-23 11:37:33 +02:00 committed by GitHub
commit fea498cd83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 3 additions and 12 deletions

View file

@ -9,7 +9,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
## Overview ## Overview
YunoRunner is our own CI runner for YunoHost Apps YunoRunner is our own CI runner for YunoHost Apps
**Shipped version:** 2021-03-05 **Shipped version:** 2021-09-22
## Screenshots ## Screenshots

View file

@ -6,7 +6,7 @@
"en": "CI runner of YunoHost", "en": "CI runner of YunoHost",
"fr": "Runner d'intégration continue de 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", "url": "https://github.com/YunoHost/yunorunner",
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"maintainer": { "maintainer": {

View file

@ -9,7 +9,7 @@ pkg_dependencies="python3-venv python3-dev python3-pip sqlite3"
yunorunner_repository="https://github.com/YunoHost/yunorunner" yunorunner_repository="https://github.com/YunoHost/yunorunner"
yunorunner_release="444de3ae11db85294b6839b79b603e2d86b0a662" yunorunner_release="0e87f07e8bcb1f3aee055a694f3c7198e22b4019"
#================================================= #=================================================
# PERSONAL HELPERS # PERSONAL HELPERS

View file

@ -110,9 +110,6 @@ pushd $final_path
python3 -m venv venv python3 -m venv venv
venv/bin/pip install --upgrade pip venv/bin/pip install --upgrade pip
venv/bin/pip install -r requirements-frozen.txt 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 popd
#================================================= #=================================================

View file

@ -94,9 +94,6 @@ pushd $final_path
python3 -m venv venv python3 -m venv venv
venv/bin/pip install --upgrade pip venv/bin/pip install --upgrade pip
venv/bin/pip install -r requirements-frozen.txt 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 popd
#================================================= #=================================================

View file

@ -149,9 +149,6 @@ pushd $final_path
python3 -m venv venv python3 -m venv venv
venv/bin/pip install --upgrade pip venv/bin/pip install --upgrade pip
venv/bin/pip install -r requirements-frozen.txt 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 popd
#================================================= #=================================================