Skip to content

Commit 79648b4

Browse files
authored
Merge pull request #374 from informatics-lab/fix-conda-build
use os.path.join and not / to support Windows build
2 parents 7e3950f + c39dff8 commit 79648b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

forest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
.. automodule:: forest.presets
2424
2525
"""
26-
__version__ = '0.16.2'
26+
__version__ = '0.16.3'
2727

2828
from .config import *
2929
from . import (

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class BuildJSCommand(setuptools.command.build_py.build_py):
6363
"""
6464
def run(self):
6565
cwd = os.getcwd()
66-
os.chdir("forest/js")
66+
os.chdir(os.path.join("forest", "js"))
6767
if not os.path.exists("node_modules"):
6868
subprocess.check_call(["npm", "install"])
6969
subprocess.check_call(["npm", "run", "build"])

0 commit comments

Comments
 (0)