We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a80cd52 commit 9866039Copy full SHA for 9866039
requirements.txt
@@ -0,0 +1 @@
1
+jupyterhub>=0.5
version.py
@@ -3,11 +3,9 @@
3
4
version_info = (
5
0,
6
+ 8,
7
- 1,
8
- 'dev', # comment-out this line for a release
+ 'rc0', # comment-out this line for a release
9
)
10
-__version__ = '.'.join(map(str, version_info[:3]))
+__version__ = '.'.join(map(str, version_info))
11
12
-if len(version_info) > 3:
13
- __version__ = '%s-%s' % (__version__, version_info[3])
0 commit comments