Skip to content

Commit 508a7dc

Browse files
committed
Fix version number
dev leading dot is automatically added.
1 parent 903fcf5 commit 508a7dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ipykernel/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
version_info = (6, 0, 0, '.dev0')
2-
__version__ = '.'.join(map(str, version_info[:3]))
1+
version_info = (6, 0, 0, "dev0")
2+
__version__ = ".".join(map(str, version_info[:3]))
33

44
# pep440 is annoying, beta/alpha/rc should _not_ have dots or pip/setuptools
55
# confuses which one between the wheel and sdist is the most recent.

0 commit comments

Comments
 (0)