We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 79648b4 + bb0bdf0 commit 8020b10Copy full SHA for 8020b10
forest/__init__.py
@@ -23,7 +23,7 @@
23
.. automodule:: forest.presets
24
25
"""
26
-__version__ = '0.16.3'
+__version__ = '0.16.4'
27
28
from .config import *
29
from . import (
setup.py
@@ -11,6 +11,7 @@
11
12
13
NAME = "forest"
14
+JS_DIR = os.path.join(os.path.dirname(__file__), NAME, r"js")
15
16
17
def find_version():
@@ -63,7 +64,7 @@ class BuildJSCommand(setuptools.command.build_py.build_py):
63
64
65
def run(self):
66
cwd = os.getcwd()
- os.chdir(os.path.join("forest", "js"))
67
+ os.chdir(JS_DIR)
68
if not os.path.exists("node_modules"):
69
subprocess.check_call(["npm", "install"])
70
subprocess.check_call(["npm", "run", "build"])
0 commit comments