Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

a binder that can launch different versions of jupyterlab dev builds #20

Merged
merged 23 commits into from Mar 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
41 changes: 41 additions & 0 deletions .binder/environment.yml
@@ -0,0 +1,41 @@
# this defines the base environment to BUILD a11y testing binders
# across different development versions.
name: a11y

channels:
- conda-forge
- nodefaults

dependencies:
# baseline runtimes
- nodejs >=12,<15,!=13.*
- python >=3.7,<3.10
- yarn <2
# jupyterlab itself (though it will be likely removed)
- jupyter_server
- jupyterlab >=3.0.9
- jupyterlab_server >=2.3,<2.4
- nbclassic
# jupyterlab build
- jupyter-packaging
- pip
- twine
- wheel
# jupyterlab demo
- matplotlib-base
- numpy
- vega_datasets
- xeus-python
# jupyterlab docs
- recommonmark
- sphinx
- sphinx_rtd_theme
- sphinx-copybutton
- sphinx-sitemap
# this repo's tools
- black
- doit
- flake8
- git
- pyyaml
- toml
20 changes: 20 additions & 0 deletions .binder/postBuild
@@ -0,0 +1,20 @@
#!/usr/bin/env bash
set -eux

doit list --all --status

mkdir -p logs

time doit clone |& tee logs/00.clone.log

doit list --all --status

time doit setup |& tee logs/01.setup.log

time doit link |& tee logs/02.link.log

time doit docs |& tee logs/03.docs.log

time doit app |& tee logs/99.app.log

doit list --all --status
13 changes: 13 additions & 0 deletions .gitignore
Expand Up @@ -102,3 +102,16 @@ venv.bak/

# mypy
.mypy_cache/

# doit
.doit*

# yarn
.yarn-links/
node_modules/

# repos
repos/

# logs
logs/