File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 94
94
- name : Install package and docs dependencies
95
95
run : |
96
96
set -eux
97
- pip install -vv -U -e .[docs,examples,test] requests_cache 'traitlets==4.*'
97
+ pip install -vv -U .[docs,examples,test] requests_cache 'traitlets==4.*'
98
98
- name : Build docs
99
99
run : |
100
100
set -eux
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
from pathlib import Path
3
3
4
+ HERE = Path (__file__ ).parent .resolve ()
5
+
6
+ try :
7
+ import setupbase
8
+ except :
9
+ import sys
10
+ import os
11
+ sys .path += [str (HERE )]
12
+
4
13
from setupbase import (
5
14
log ,
6
15
create_cmdclass ,
14
23
15
24
LONG_DESCRIPTION = 'A Python/ThreeJS bridge utilizing the Jupyter widget infrastructure.'
16
25
17
- HERE = Path (__file__ ).parent .resolve ()
18
26
name = 'pythreejs'
19
27
py_path = (HERE / name )
20
28
js_path = (HERE / "js" )
You can’t perform that action at this time.
0 commit comments