cc @jtratner This line fails https://github.com/counsyl/stor/blob/master/stor/utils.py#L377 when executing `copy` on a windows machine: The problem is that on windows `Path` defaults to `WindowsPath`, which results in: ``` TypeError: unsupported operand type(s) for /: 'WindowsPath' and 'PosixPath' ```
cc @jtratner
This line fails https://github.com/counsyl/stor/blob/master/stor/utils.py#L377 when executing
copyon a windows machine:The problem is that on windows
Pathdefaults toWindowsPath, which results in: