Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,25 @@ and will be overwritten after reading back the file.
},


HINT Changes Version 11
-----------------------

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`.

This has required revisions to imports and, for example, replacement of this syntax in plugins.

Before::

_dirname, _name = os.path.split(filename)
_fs = open_fs(_dirname)
with _fs.open(_name, "wb") as csvfile:

After::

path = Path(filename)
with path.open("wb") as csvfile:


User contributed Plugins
------------------------

Expand Down
9 changes: 9 additions & 0 deletions docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ interface (top view and side view).

.. _msui-configuration:

HINT Changes Version 11
-----------------------

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`.

The change does not affect directories that use `~` to represent the home directory.
But we have dropped support for FS_URLs.

Configuration of MSUI
---------------------

Expand Down
Loading