From f45792bb7eb3f3094605fcfd2cd9a17446a0b53a Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Wed, 6 Aug 2025 17:03:13 +0100 Subject: [PATCH] Use correct `__version__` on `main` branch after branch manipulations --- ipykernel/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipykernel/_version.py b/ipykernel/_version.py index 6b7e6d02a..651d058d5 100644 --- a/ipykernel/_version.py +++ b/ipykernel/_version.py @@ -5,7 +5,7 @@ import re # Version string must appear intact for hatch versioning -__version__ = "6.30.0a0" +__version__ = "7.0.0a1" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"