Andreas Poehlmann
Andreas Poehlmann
> Do those fail with a different exception type now, or just return garbage pathstrings? Current master returns garbage: ```python >>> from fsspec.implementations.local import make_path_posix >>> make_path_posix(object()) '/Users/poehlmann/development/filesystem_spec/' ``` Possible...
That made it work ☺️ The py3.11 test failed because the smb tests failed.
Awesome. So we just need a decision regarding `make_path_posix` behavior: 1. `make_path_posix(None)` returns `/cwd/None` (`fsspec>=2024.3.1` and **this PR**) 2. `make_path_posix(None)` raises `TypeError` (`fsspec
I made the changes and added tests for `stringify_path`. > In `stringify_path` I suggest changing from ` isinstance(filepath, pathlib.Path)` to `isinstance(filepath, pathlib.PurePath).`Path`is a subclass of`PurePath`. and would mean `PurePosixPath`and`PureWindowsPath` are...
Hello everyone, sorry, this dropped off my list a while ago. I'm happy to test and provide feedback and I should be able to find time next weekend. In any...
I completely agree. I wonder if specifically selecting a series should make TiffSlide fall back to the generic tiff-route though. Do you have an example of the `` xml for...
I just created a new release `v1.1.0` with your added support for `scn`. Please try that version and if there are cases in which the correct series is not found,...
Hi @barneygale Thank you for the heads up :heart: I'll provide more detailed comments in the next days. One immediate thought would be, that ```python from pathlib import Path, _VirtualPath...
`VirtualPath` -> `_PathBase` see: https://discuss.python.org/t/make-pathlib-extensible/3428/134
Once this is implemented we can deprecate `._url`