8000 papercuts · winpython/winpython@774b4cd · GitHub
[go: up one dir, main page]

Skip to content

Commit 774b4cd

Browse files
committed
papercuts
1 parent c8ee277 commit 774b4cd

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

run_complement_newbuild.bat

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,18 +81,19 @@ echo JUPYTERLAB_DIR=%JUPYTERLAB_DIR% default is ~/.jupyter/lab
8181
echo JUPYTERLAB_SETTINGS_DIR=%JUPYTERLAB_SETTINGS_DIR% , default is ~/.jupyter/lab/user-settings/
8282
echo 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

8787
rem jupyter labextension update --all (will rebuild if needed)
8888
rem 2020-12-31 tweaks
8989
rem see https://jupyter.readthedocs.io/en/latest/use/jupyter-directories.html
9090
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
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

9899
rem * ===================

winpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
OTHER 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/'

winpython/data/packages.ini

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3682,3 +3682,15 @@ description = A youtube-dl fork with additional features and patches
36823682
[safetensors]
36833683
description = 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+

0 commit comments

Comments
 (0)
0