Skip to content

Commit

Permalink
Version 1.13.4 (#895)
Browse files Browse the repository at this point in the history
* Highlight the new option to open text notebooks with '⭐New⭐' 
* Ignore one more warning
* Do not turn unfiltered warnings into errors, finally
(Otherwise we get too many failures on the CI)
* Update CHANGELOG.md
  • Loading branch information
mwouts authored Dec 12, 2021
1 parent fece6db commit f843c54
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ When Jupytext is installed, `.py` and `.md` files have a notebook icon. And you
(click on the image above to try this on [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/mwouts/jupytext/main?filepath=demo))
</details>
<details>
<summary>With a click on the text file in JupyterLab</summary>
<summary>With a click on the text file in JupyterLab (<b>⭐New⭐</b>)</summary>
To do that, you will need to change the default viewer for text notebooks by copy-pasting the following settings (or the subset that matches your use case) in the `Document Manager` section:

```json
Expand Down
6 changes: 3 additions & 3 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Jupytext ChangeLog
==================

1.13.4-dev (2021-12-??)
-----------------------
1.13.4 (2021-12-12)
-------------------

**Changed**
- The test suite turns warnings into errors, after filtering the warnings that don't belong to Jupytext ([#823](https://github.com/mwouts/jupytext/issues/823))
- The test suite filters the warnings that don't belong to Jupytext ([#823](https://github.com/mwouts/jupytext/issues/823))

**Fixed**
- The parsing of notebooks that don't have a YAML header (like `docs/formats.md`) was improved.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ When Jupytext is installed, `.py` and `.md` files have a notebook icon. And you
(click on the image above to try this on [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/mwouts/jupytext/main?filepath=demo))
</details>
<details>
<summary>With a click on the text file in JupyterLab</summary>
<summary>With a click on the text file in JupyterLab (<b>⭐New⭐</b>)</summary>
To do that, you will need to change the default viewer for text notebooks by copy-pasting the following settings (or the subset that matches your use case) in the `Document Manager` section:

```json
Expand Down
2 changes: 1 addition & 1 deletion jupytext/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Jupytext's version number"""

__version__ = "1.13.4-dev"
__version__ = "1.13.4"
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,21 @@ build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
filterwarnings = [
# Uncomment this "error" to turn all unfiltered warnings into errors
"error",
# "error",
# use single quote to denote raw strings in toml
# (10 warnings)
'ignore:Passing unrecognized arguments to super\(KernelSpec\).__init__:DeprecationWarning',
# In many tests
# Not seen any more with latest Python + libs
"ignore:Passing a schema to Validator.iter_errors is deprecated and will be removed in a future release:DeprecationWarning",
# in test_utf8_out_331 and two others
# Not seen any more with latest Python + libs
'ignore:Exception ignored in. <function Context.__del__:pytest.PytestUnraisableExceptionWarning',
# In test_markdown_jupytext_nbconvert_is_identity
'ignore:.*contextfilter.* renamed to .*pass_context:DeprecationWarning',
# in test_cli_expect_errors and two others
'ignore:Exception ignored in. <socket.socket:pytest.PytestUnraisableExceptionWarning',
# in test_paired_paths / Python 3.6
'ignore:Exception ignored in. <bound method Context.__del__:pytest.PytestUnraisableExceptionWarning',
# test_config_jupytext_jupyter_fs_meta_manager
'ignore:The alias `_\(\)` will be deprecated. Use `_i18n\(\)` instead.:FutureWarning',
# Conda/Python 3.7/Windows - ImportError while loading conftest
Expand Down

0 comments on commit f843c54

Please sign in to comment.