File tree 3 files changed +18
-5
lines changed
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
81
81
echo JUPYTERLAB_SETTINGS_DIR=%JUPYTERLAB_SETTINGS_DIR% , default is ~/.jupyter/lab/user-settings/
82
82
echo JUPYTERLAB_WORKSPACES_DIR=%JUPYTERLAB_WORKSPACES_DIR% , default is ~/.jupyter/lab/workspaces/
83
83
84
- %WINPYDIR% \Scripts\jupyter.exe" lab path
84
+ " %WINPYDIR% \Scripts\jupyter.exe" lab path
85
85
86
86
87
87
rem jupyter labextension update --all (will rebuild if needed)
88
88
rem 2020-12-31 tweaks
89
89
rem see https://jupyter.readthedocs.io/en/latest/use/jupyter-directories.html
90
90
if 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
93
93
)
94
94
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
96
97
97
98
98
99
rem * ===================
Original file line number Diff line number Diff line change 28
28
OTHER DEALINGS IN THE SOFTWARE.
29
29
"""
30
30
31
- __version__ = '7.0.20231008 '
31
+ __version__ = '7.0.20231015 '
32
32
__license__ = __doc__
33
33
__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
3682
3682
[safetensors]
3683
3683
description = Fast and Safe Tensor serialization
3684
3684
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