Skip to content

Commit 5ab92dd

Browse files
committed
Version 1.19.1.dev0
1 parent ad72e62 commit 5ab92dd

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Jupytext ChangeLog
22
==================
33

4+
1.19.1.dev0 (development)
5+
-------------------------
6+
7+
**Changed**
8+
9+
- We have bumped lodash from 4.17.21 to 4.17.23 in JupyterLab extension ([#1483](https://github.com/mwouts/jupytext/pull/1483))
10+
11+
412
1.19.0 (2026-01-18)
513
-------------------
614

jupytext/version.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
"""Jupytext's version number"""
2+
3+
# Must match [N!]N(.N)*[{a|b|rc}N][.postN][.devN], cf. PEP 440
4+
__version__ = "1.19.1.dev0"

tests/functional/docs/test_changelog.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,8 @@ def test_version_matches_changelog():
6767
return
6868

6969
raise ValueError("No version found in CHANGELOG.md")
70+
71+
72+
def test_version_pep440_compliance():
73+
pep440_regex = r"^(?:(?:0|[1-9]\d*)\.){2}(?:0|[1-9]\d*)(?:[abc]|rc)?(?:\d+)?(?:\.post\d+)?(?:\.dev\d+)?$"
74+
assert re.match(pep440_regex, __version__), f"Version {__version__} is not PEP 440 compliant"

0 commit comments

Comments
 (0)