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

Bump yunorunner version

This commit is contained in:
Kay0u 2021-09-22 16:30:48 +02:00
parent 4f21f8cc1e
commit 5b467bd0c5
No known key found for this signature in database
GPG key ID: AAFEEB16CFA2AE2D
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
YunoRunner is our own CI runner for YunoHost Apps
**Shipped version:** 2021-03-05
**Shipped version:** 2021-09-22
## Screenshots

View file

@ -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": {

View file

@ -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

View file

@ -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
#=================================================

View file

@ -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
#=================================================

View file

@ -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
#=================================================