123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #!/bin/bash
- set -ex
- set -o pipefail
- if [ $OSTYPE == "Linux" ]; then
- sudo rm -rf $(which yarn)
- ! yarn
- fi
- mkdir -p ~/.jupyter
- git config --global user.name foo
- git config --global user.email foo@bar.com
- pip install -q --upgrade pip --user
- pip --version
- pip install -e ".[test]" || pip install -v -e ".[test]"
- jlpm versions
- jlpm config current
- jupyter serverextension enable jupyterlab
- jupyter serverextension list 1>serverextensions 2>&1
- cat serverextensions
- cat serverextensions | grep -i "jupyterlab.*enabled"
- cat serverextensions | grep -i "jupyterlab.*OK"
- rm serverextensions
- if [[ $GROUP == integrity ]]; then
- pip install notebook==4.3.1
- fi
- if [[ $GROUP == nonode ]]; then
-
- pip install build
- python -m build .
-
- sudo rm -rf $(which node)
- sudo rm -rf $(which node)
- ! node
- fi
- if [[ $GROUP == js-debugger ]]; then
- pip install xeus-python">=0.9.0,<0.10.0"
- fi
- pip install 'jedi<0.18'
|