Skip to content

Commit 862f753

Browse files
committed
fixing path issues
1 parent 7afe884 commit 862f753

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def install_microlibs(sources, develop=False):
2727
wd = pathlib.Path.cwd()
2828
for k, v in iteritems(sources):
2929
try:
30-
microlib_dir = wd.joinpath(v)
30+
microlib_dir = os.fspath(wd.joinpath(v))
3131
if develop:
3232
subprocess.check_call([sys.executable, '-m', 'pip', 'install', '-e', '.'], cwd=microlib_dir)
3333
else:

0 commit comments

Comments
 (0)