Skip to content

Commit a621128

Browse files
author
Mariko Wakabayashi
committed
Make version number pep 440 compliant
1 parent 440707a commit a621128

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jupyter_server/_version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# the version string is propagated to the JavaScript files, do not forget to
88
# patch the JavaScript files in `.postN` release done by distributions.
99

10-
# Next beta/alpha/rc release: The version number for beta is X.Y.ZbN **without dots**.
10+
# Next beta/alpha/rc release: The version number for beta is X.Y.Z.bN
1111

12-
version_info = (1, 1, 0, '')
13-
__version__ = '.'.join(map(str, version_info[:3])) + ''.join(version_info[3:])
12+
version_info = (1, 1, 0, 'dev0')
13+
__version__ = '.'.join(map(str, version_info))

0 commit comments

Comments
 (0)