Skip to content

Commit c851a10

Browse files
committed
switching to 4.0 as classic notebook icon is switched to Jupyter-nbclassic
rise may no more work, so
1 parent 6c53e06 commit c851a10

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

make.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -936,7 +936,7 @@ def _create_launchers(self):
936936
'Jupyter Notebook.exe',
937937
'jupyter.ico',
938938
command='$SYSDIR\cmd.exe',
939-
args=r'/k winipython_notebook.bat',
939+
args=r'/k winjupyter_nbclassic.bat',
940940
)
941941

942942
self.create_launcher(
@@ -1701,6 +1701,16 @@ def _create_batch_scripts(self):
17011701
""",
17021702
)
17031703

1704+
self.create_batch_script(
1705+
'winjupyter_nbclassic.bat',
1706+
r"""@echo off
1707+
call "%~dp0env_for_icons.bat" %*
1708+
cd/D "%WINPYWORKDIR1%"
1709+
"%WINPYDIR%\scripts\jupyter-nbclassic.exe" %*
1710+
""",
1711+
)
1712+
1713+
17041714
self.create_batch_script(
17051715
'winjupyter_lab.bat',
17061716
r"""@echo off

winpython/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
OTHER DEALINGS IN THE SOFTWARE.
2929
"""
3030

31-
__version__ = '3.4.20210227'
31+
__version__ = '4.0.20210307'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

0 commit comments

Comments
 (0)