Skip to content

Commit b7d8e41

Browse files
committed
update version number
1 parent 47efb07 commit b7d8e41

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

jupyter_sphinx/_version.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
version_info = (0, 1, 4)
2-
__version__ = '.'.join(map(str, version_info))
1+
version_info = (0, 2, 0, 'candidate', 1)
2+
3+
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
4+
5+
__version__ = '%s.%s.%s%s'%(version_info[0], version_info[1], version_info[2],
6+
'' if version_info[3]=='final' else _specifier_[version_info[3]]+str(version_info[4]))

0 commit comments

Comments
 (0)