Fixed
- The Jupytext CLI only suggest
--update
when the target is an .ipynb file (#905) - thanks to st-- for this contribution - We made sure that commands like
cat notebook.md | jupytext --execute
work (#908)
Added
Changed
- We have updated the pre-commit hooks and in particular we switched to the first stable version of
black==22.1.0
. - We require
pandoc==2.16.2
for testing. The representation for code cells changed from``` {.python}
to``` python
in that version of Pandoc (#906). We don't usepandoc>=2.17
in tests at the moment because of the introduction of cell ids that cannot be filtered. - Jupytext will not add anymore a UTF-8 encoding on Python scripts when the notebook contains non-ascii characters (#907)
- We have added
pyupgrade
to the pre-commit hooks used for developing Jupytext (#907)