12345678910111213141516171819202122232425262728293031323334353637 |
- #!/bin/bash
- set -ex
- set -o pipefail
- sudo rm -rf $(which yarn)
- ! yarn
- mkdir ~/.jupyter
- pip install -q --upgrade pip
- pip --version
- pip install -e ".[test]" || pip install -v -e ".[test]"
- jlpm versions
- jlpm config current
- jupyter serverextension enable --py jupyterlab
- if [[ $GROUP == integrity ]]; then
- pip install notebook==4.3.1
- fi
- if [[ $GROUP == nonode ]]; then
-
- python setup.py bdist_wheel
-
- sudo rm -rf $(which node)
- sudo rm -rf $(which node)
- ! node
- fi
|