File tree Expand file tree Collapse file tree 3 files changed +18
-5
lines changed
Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -81,18 +81,19 @@ echo JUPYTERLAB_DIR=%JUPYTERLAB_DIR% default is ~/.jupyter/lab
8181echo JUPYTERLAB_SETTINGS_DIR=%JUPYTERLAB_SETTINGS_DIR% , default is ~/.jupyter/lab/user-settings/
8282echo JUPYTERLAB_WORKSPACES_DIR=%JUPYTERLAB_WORKSPACES_DIR% , default is ~/.jupyter/lab/workspaces/
8383
84- %WINPYDIR% \Scripts\jupyter.exe" lab path
84+ " %WINPYDIR% \Scripts\jupyter.exe" lab path
8585
8686
8787rem jupyter labextension update --all (will rebuild if needed)
8888rem 2020-12-31 tweaks
8989rem see https://jupyter.readthedocs.io/en/latest/use/jupyter-directories.html
9090if exist " %WINPYDIR% \Lib\site-packages\jupyterlab" (
91- " %WINPYDIR% \Scripts\jupyter.exe" jupyter labextension list
92- " %WINPYDIR% \Scripts\jupyter.exe" jupyter --paths
91+ " %WINPYDIR% \Scripts\jupyter.exe" labextension list
92+ " %WINPYDIR% \Scripts\jupyter.exe" --paths
9393)
9494
95- if exist " %WINPYDIR% \Lib\site-packages\notebook" " %WINPYDIR% \Scripts\jupyter.exe" nbextension list
95+ REM 2023-10-15: 'nbextension' was Jupyter3 days
96+ rem if exist "%WINPYDIR%\Lib\site-packages\notebook" "%WINPYDIR%\Scripts\jupyter.exe" nbextension list
9697
9798
9899rem * ===================
Original file line number Diff line number Diff line change 2828OTHER DEALINGS IN THE SOFTWARE.
2929"""
3030
31- __version__ = '7.0.20231008 '
31+ __version__ = '7.0.20231015 '
3232__license__ = __doc__
3333__project_url__ = 'http://winpython.github.io/'
Original file line number Diff line number Diff line change @@ -3682,3 +3682,15 @@ description = A youtube-dl fork with additional features and patches
36823682[safetensors]
36833683description = Fast and Safe Tensor serialization
36843684
3685+ [array-api-compat]
3686+ description = A wrapper around NumPy and other array libraries to make them compatible with the Array API standard
3687+
3688+ [jaxtyping]
3689+ description = Type annotations and runtime checking for shape and dtype of JAX arrays, and PyTrees.
3690+
3691+ [sqlite-migrate]
3692+ description = A simple database migration system for SQLite, based on sqlite-utils
3693+
3694+ [typeguard]
3695+ description = Run-time type checker for Python
3696+
You can’t perform that action at this time.
0 commit comments