File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,10 @@ channels:
5
5
dependencies :
6
6
# runtimes
7
7
- python >=3.6
8
- - nodejs >=12
8
+ - nodejs >=12,!=13,<15 # prefer LTS
9
9
- pip
10
+ - wheel
11
+ - setuptools
10
12
# dependencies
11
13
- ipydatawidgets >=1.1.1
12
14
- ipywidgets >=7.2.1
Original file line number Diff line number Diff line change @@ -3,17 +3,10 @@ set -eux
3
3
4
4
pushd js
5
5
jlpm --ignore-optional
6
- jlpm build:bundles
7
- jlpm build:all
8
6
popd
9
7
10
- python -m pip install -vv -e . --no-deps --ignore-installed
11
- python -m pip check
12
-
13
- # install labextension
14
- pushd js
15
- jupyter labextension develop . --overwrite
16
- popd
8
+ python setup.py sdist
9
+ python -m pip install -v dist/pythreejs* .tar.gz --no-deps --ignore-installed
17
10
18
11
# validate
19
12
jupyter nbextension list
You can’t perform that action at this time.
0 commit comments