File tree Expand file tree Collapse file tree 2 files changed +23
-4
lines changed Expand file tree Collapse file tree 2 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 1- name : pythreejs
1+ name : pythreejs-binder
2+
23channels :
34 - conda-forge
45 - nodefaults
5- dependencies :
6+
7+ dependencies :
68 # runtimes
79 - nodejs >=12,!=13,<15 # prefer LTS
810 - pip
@@ -27,3 +29,8 @@ dependencies:
2729 - matplotlib-base
2830 - scikit-image
2931 - scipy
32+ # docs
33+ - nbsphinx >=0.2.13
34+ - nbsphinx-link
35+ - sphinx >=1.5
36+ - sphinx-rtd-theme
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -eux
33
4+ export PIP_DISABLE_PIP_VERSION_CHECK=1
5+ export PYTHONUNBUFFERED=1
6+ export PYTHONIOENCODING=utf-8
7+
48pushd js
59jlpm --ignore-optional
610popd
711
12+ # install and validate python environment
813python setup.py sdist
9- python -m pip install -v dist/pythreejs* .tar.gz --no-deps --ignore-installed
14+ python -m pip install -v dist/pythreejs* .tar.gz
15+ python -m pip install -e .[test,examples,docs] --ignore-installed
16+ python -m pip check || echo " uh oh"
17+
18+ # build docs
19+ pushd docs
20+ make html
21+ popd
1022
11- # validate
23+ # validate extensions
1224jupyter nbextension list
1325jupyter labextension list
You can’t perform that action at this time.
0 commit comments