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 9494 - name : Install package and docs dependencies
9595 run : |
9696 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.*'
9898 - name : Build docs
9999 run : |
100100 set -eux
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22from pathlib import Path
33
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+
413from setupbase import (
514 log ,
615 create_cmdclass ,
1423
1524LONG_DESCRIPTION = 'A Python/ThreeJS bridge utilizing the Jupyter widget infrastructure.'
1625
17- HERE = Path (__file__ ).parent .resolve ()
1826name = 'pythreejs'
1927py_path = (HERE / name )
2028js_path = (HERE / "js" )
You can’t perform that action at this time.
0 commit comments