Skip to content

Commit d772277

Browse files
authored
Merge pull request #3949 from gustavoefeiche/fix-installation
Fix installation script
2 parents b7fdc41 + 26c73d3 commit d772277

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

notebook/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99

1010
# Next beta/alpha/rc release: The version number for beta is X.Y.ZbN **without dots**.
1111

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

notebook/static/base/js/namespace.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,9 @@ define(function(){
7373
// tree
7474
jglobal('SessionList','tree/js/sessionlist');
7575

76-
Jupyter.version = "5.7.0";
76+
Jupyter.version = "6.0.0.dev0";
7777
Jupyter._target = '_blank';
78+
7879
return Jupyter;
7980
});
8081

0 commit comments

Comments
 (0)