Skip to content

Commit

Permalink
switching to 4.0 as classic notebook icon is switched to Jupyter-nbcl…
Browse files Browse the repository at this point in the history
…assic

rise may no more work, so
  • Loading branch information
stonebig committed Mar 7, 2021
1 parent 6c53e06 commit c851a10
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion make.py
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ def _create_launchers(self):
'Jupyter Notebook.exe',
'jupyter.ico',
command='$SYSDIR\cmd.exe',
args=r'/k winipython_notebook.bat',
args=r'/k winjupyter_nbclassic.bat',
)

self.create_launcher(
Expand Down Expand Up @@ -1701,6 +1701,16 @@ def _create_batch_scripts(self):
""",
)

self.create_batch_script(
'winjupyter_nbclassic.bat',
r"""@echo off
call "%~dp0env_for_icons.bat" %*
cd/D "%WINPYWORKDIR1%"
"%WINPYDIR%\scripts\jupyter-nbclassic.exe" %*
""",
)


self.create_batch_script(
'winjupyter_lab.bat',
r"""@echo off
Expand Down
2 changes: 1 addition & 1 deletion winpython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
OTHER DEALINGS IN THE SOFTWARE.
"""

__version__ = '3.4.20210227'
__version__ = '4.0.20210307'
__license__ = __doc__
__project_url__ = 'http://winpython.github.io/'

0 comments on commit c851a10

Please sign in to comment.