Changed
- The Jupytext configuration file has a new option
cm_config_log_level
that defaults toinfo_if_changed
.
With that value, the contents manager will log a line regarding the configuration file used only when the
config file is not the same as the one previously used (#959) -
many thanks to R.C. Thomas for suggesting this and thoughtfully testing the patch. - Hidden configuration files like
.jupytext.toml
or.jupytext.py
are now ignored by Jupytext's contents manager
whenallow_hidden=False
(that option was introduced injupyter_server==2.0.0a1
) (#964). - We have changed
jupytext --set-formats
to make it more similar tojupytext --sync
. Now--set-formats
will not
override existing paired files anymore (#969).
Added
- We have added a test
test_pre_commit_hook_sync_with_no_config
that documents how to use the pre-commit hook without
a configuration file (#967)