Skip to content

Commit 0b34fed

Browse files
adamb70scuml
authored andcommitted
Fix install of 1.2.1 on Windows (#11)
Force cast to string from Pathlib.Path object types
1 parent 7ee6601 commit 0b34fed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66
# allow setup.py to be run from any path
7-
os.chdir(Path(__file__).absolute().parent)
7+
os.chdir(str(Path(__file__).absolute().parent))
88

99
if 'publish' in sys.argv:
1010
if 'test' in sys.argv:

0 commit comments

Comments
 (0)