We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7e3950f + c39dff8 commit 79648b4Copy full SHA for 79648b4
forest/__init__.py
@@ -23,7 +23,7 @@
23
.. automodule:: forest.presets
24
25
"""
26
-__version__ = '0.16.2'
+__version__ = '0.16.3'
27
28
from .config import *
29
from . import (
setup.py
@@ -63,7 +63,7 @@ class BuildJSCommand(setuptools.command.build_py.build_py):
63
64
def run(self):
65
cwd = os.getcwd()
66
- os.chdir("forest/js")
+ os.chdir(os.path.join("forest", "js"))
67
if not os.path.exists("node_modules"):
68
subprocess.check_call(["npm", "install"])
69
subprocess.check_call(["npm", "run", "build"])
0 commit comments