Skip to content

Commit

Permalink
Fix a typo when build_jupytext_contents_manager_class
Browse files Browse the repository at this point in the history
can't be imported
  • Loading branch information
mwouts committed Jun 30, 2024
1 parent 42a48e8 commit 28f33e0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Jupytext ChangeLog
==================

1.16.3-dev (2024-07-??)
-------------------

**Fixed**
- We have fixed a typo when `build_jupytext_contents_manager_class` can't be imported ([#1162](https://github.com/mwouts/jupytext/issues/1162))


1.16.2 (2024-05-05)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion src/jupytext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
try:
from .contentsmanager import build_jupytext_contents_manager_class
except ImportError as err:
build_jupytext_contents_manager = reraise(err)
build_jupytext_contents_manager_class = reraise(err)

try:
from .contentsmanager import TextFileContentsManager
Expand Down
2 changes: 1 addition & 1 deletion src/jupytext/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Jupytext's version number"""

__version__ = "1.16.2"
__version__ = "1.16.3-dev"

0 comments on commit 28f33e0

Please sign in to comment.