1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jupyterlab_ynh.git synced 2024-09-03 19:26:35 +02:00

Merge pull request #27 from YunoHost-Apps/testing

Testing
This commit is contained in:
Kayou 2020-03-25 02:12:52 +01:00 committed by GitHub
commit 665d989694
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 10 additions and 10 deletions

View file

@ -9,7 +9,7 @@ If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to
## Overview ## Overview
JupyterLab is the next-generation user interface for Project Jupyter offering all the familiar building blocks of the classic Jupyter Notebook (notebook, terminal, text editor, file browser, rich outputs, etc.) in a flexible and powerful user interface. JupyterLab will eventually replace the classic Jupyter Notebook. JupyterLab is the next-generation user interface for Project Jupyter offering all the familiar building blocks of the classic Jupyter Notebook (notebook, terminal, text editor, file browser, rich outputs, etc.) in a flexible and powerful user interface. JupyterLab will eventually replace the classic Jupyter Notebook.
**Shipped version:** v1.2.6 **Shipped version:** v2.0.1
## Screenshots ## Screenshots

View file

@ -2,7 +2,7 @@
"name": "JupyterLab", "name": "JupyterLab",
"id": "jupyterlab", "id": "jupyterlab",
"packaging_format": 1, "packaging_format": 1,
"version": "1.2.6~ynh1", "version": "2.0.1~ynh1",
"description": { "description": {
"en": "An extensible environment for interactive and reproducible computing (notebook, terminal, text editor, file browser, rich outputs, etc.)", "en": "An extensible environment for interactive and reproducible computing (notebook, terminal, text editor, file browser, rich outputs, etc.)",
"fr": "Un environnement informatique extensible, interactif et reproductible (bloc-notes, terminal, éditeur de texte, explorateur de fichiers, texte enrichi, etc.)" "fr": "Un environnement informatique extensible, interactif et reproductible (bloc-notes, terminal, éditeur de texte, explorateur de fichiers, texte enrichi, etc.)"

View file

@ -5,7 +5,7 @@
#================================================= #=================================================
# dependencies used by the app # dependencies used by the app
pkg_dependencies="python3-pip" pkg_dependencies="python3-pip libffi-dev"
#================================================= #=================================================
# PERSONAL HELPERS # PERSONAL HELPERS

View file

@ -82,7 +82,7 @@ ynh_install_app_dependencies $pkg_dependencies
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=8 ynh_exec_warn_less ynh_install_nodejs --nodejs_version=8
pip3 install pipenv python3 -m pip install pipenv
npm install -g configurable-http-proxy npm install -g configurable-http-proxy
@ -99,7 +99,7 @@ mkdir -p $final_path
pushd $final_path pushd $final_path
PIPENV_VENV_IN_PROJECT="enabled" PIPENV_SKIP_LOCK=true ynh_exec_warn_less pipenv install jupyterlab==$jupyterlab_version jupyterhub notebook jupyterhub-ldapauthenticator --three PIPENV_VENV_IN_PROJECT="enabled" PIPENV_SKIP_LOCK=true ynh_exec_warn_less python3 -m pipenv install jupyterlab==$jupyterlab_version jupyterhub notebook jupyterhub-ldapauthenticator --three
popd popd

View file

@ -77,7 +77,7 @@ ynh_install_app_dependencies $pkg_dependencies
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=8 ynh_exec_warn_less ynh_install_nodejs --nodejs_version=8
pip3 install pipenv python3 -m pip install pipenv
npm install -g configurable-http-proxy npm install -g configurable-http-proxy

View file

@ -99,7 +99,7 @@ ynh_exec_warn_less ynh_install_nodejs --nodejs_version=8
npm install -g configurable-http-proxy npm install -g configurable-http-proxy
pip3 install pipenv python3 -m pip install pipenv
#================================================= #=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE # DOWNLOAD, CHECK AND UNPACK SOURCE
@ -116,9 +116,9 @@ then
pushd $final_path pushd $final_path
PIPENV_VENV_IN_PROJECT="enabled" PIPENV_SKIP_LOCK=true ynh_exec_warn_less pipenv install jupyterlab==$jupyterlab_version jupyterhub notebook jupyterhub-ldapauthenticator --three PIPENV_VENV_IN_PROJECT="enabled" PIPENV_SKIP_LOCK=true ynh_exec_warn_less python3 -m pipenv install jupyterlab==$jupyterlab_version jupyterhub notebook jupyterhub-ldapauthenticator --three
ynh_exec_warn_less pipenv run jupyterhub upgrade-db ynh_exec_warn_less python3 -m pipenv run jupyterhub upgrade-db
popd popd
fi fi

View file

@ -1 +1 @@
jupyterlab_version="1.2.6" jupyterlab_version="2.0.1"