Skip to content

Commit 3f37e2c

Browse files
authored
hint for 11 added (#2939)
1 parent ee1c1a4 commit 3f37e2c

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

docs/plugins.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
5877
User contributed Plugins
5978
------------------------
6079

docs/usage.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
2231
Configuration of MSUI
2332
---------------------
2433

0 commit comments

Comments
 (0)