File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed
Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,25 @@ and will be overwritten after reading back the file.
5555 },
5656
5757
58+ HINT Changes Version 11
59+ -----------------------
60+
61+ We have removed the `fs ` library and the `conda-forge ` package `fs_filepicker ` by version 11. Internally, we are now using `Pathlib ` and `os.path `.
62+
63+ This has required revisions to imports and, for example, replacement of this syntax in plugins.
64+
65+ Before::
66+
67+ _dirname, _name = os.path.split(filename)
68+ _fs = open_fs(_dirname)
69+ with _fs.open(_name, "wb") as csvfile:
70+
71+ After::
72+
73+ path = Path(filename)
74+ with path.open("wb") as csvfile:
75+
76+
5877User contributed Plugins
5978------------------------
6079
Original file line number Diff line number Diff line change @@ -19,6 +19,15 @@ interface (top view and side view).
1919
2020.. _msui-configuration :
2121
22+ HINT Changes Version 11
23+ -----------------------
24+
25+ We have removed the `fs ` library and the `conda-forge ` package `fs_filepicker ` by version 11.
26+ Internally, we are now using `Pathlib ` and `os.path `.
27+
28+ The change does not affect directories that use `~ ` to represent the home directory.
29+ But we have dropped support for FS_URLs.
30+
2231Configuration of MSUI
2332---------------------
2433
You can’t perform that action at this time.
0 commit comments