notebook 6.5.5__py3-none-any.whl → 6.5.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of notebook might be problematic. Click here for more details.
- notebook/_version.py +1 -1
- notebook/notebookapp.py +1 -1
- notebook/traittypes.py +2 -1
- {notebook-6.5.5.dist-info → notebook-6.5.7.dist-info}/METADATA +12 -12
- {notebook-6.5.5.dist-info → notebook-6.5.7.dist-info}/RECORD +11 -11
- {notebook-6.5.5.dist-info → notebook-6.5.7.dist-info}/WHEEL +1 -1
- {notebook-6.5.5.data → notebook-6.5.7.data}/data/share/applications/jupyter-notebook.desktop +0 -0
- {notebook-6.5.5.data → notebook-6.5.7.data}/data/share/icons/hicolor/scalable/apps/notebook.svg +0 -0
- {notebook-6.5.5.dist-info → notebook-6.5.7.dist-info}/LICENSE +0 -0
- {notebook-6.5.5.dist-info → notebook-6.5.7.dist-info}/entry_points.txt +0 -0
- {notebook-6.5.5.dist-info → notebook-6.5.7.dist-info}/top_level.txt +0 -0
notebook/_version.py
CHANGED
|
@@ -5,7 +5,7 @@ store the current version info of the notebook.
|
|
|
5
5
|
import re
|
|
6
6
|
|
|
7
7
|
# Version string must appear intact for tbump versioning
|
|
8
|
-
__version__ = '6.5.
|
|
8
|
+
__version__ = '6.5.7'
|
|
9
9
|
|
|
10
10
|
# Build up version_info tuple for backwards compatibility
|
|
11
11
|
pattern = r'(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)'
|
notebook/notebookapp.py
CHANGED
|
@@ -1408,7 +1408,7 @@ class NotebookApp(JupyterApp):
|
|
|
1408
1408
|
# and allow jupyter_server contents managers to pass
|
|
1409
1409
|
# through. If jupyter_server is not installed, this class
|
|
1410
1410
|
# will be ignored.
|
|
1411
|
-
|
|
1411
|
+
"jupyter_server.services.contents.managers.ContentsManager",
|
|
1412
1412
|
],
|
|
1413
1413
|
config=True,
|
|
1414
1414
|
help=_('The notebook manager class to use.')
|
notebook/traittypes.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import inspect
|
|
2
|
-
from
|
|
2
|
+
from warnings import warn
|
|
3
|
+
from traitlets import ClassBasedTraitType, Undefined
|
|
3
4
|
|
|
4
5
|
# Traitlet's 5.x includes a set of utilities for building
|
|
5
6
|
# description strings for objects. Traitlets 5.x does not
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: notebook
|
|
3
|
-
Version: 6.5.
|
|
3
|
+
Version: 6.5.7
|
|
4
4
|
Summary: A web-based notebook environment for interactive computing
|
|
5
5
|
Home-page: http://jupyter.org
|
|
6
6
|
Author: Jupyter Development Team
|
|
@@ -24,21 +24,21 @@ Requires-Python: >=3.7
|
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
25
|
License-File: LICENSE
|
|
26
26
|
Requires-Dist: jinja2
|
|
27
|
-
Requires-Dist: tornado
|
|
28
|
-
Requires-Dist: pyzmq
|
|
27
|
+
Requires-Dist: tornado >=6.1
|
|
28
|
+
Requires-Dist: pyzmq >=17
|
|
29
29
|
Requires-Dist: argon2-cffi
|
|
30
|
-
Requires-Dist: traitlets
|
|
31
|
-
Requires-Dist: jupyter-core
|
|
32
|
-
Requires-Dist: jupyter-client
|
|
30
|
+
Requires-Dist: traitlets >=4.2.1
|
|
31
|
+
Requires-Dist: jupyter-core >=4.6.1
|
|
32
|
+
Requires-Dist: jupyter-client <8,>=5.3.4
|
|
33
33
|
Requires-Dist: ipython-genutils
|
|
34
34
|
Requires-Dist: nbformat
|
|
35
|
-
Requires-Dist: nbconvert
|
|
36
|
-
Requires-Dist: nest-asyncio
|
|
35
|
+
Requires-Dist: nbconvert >=5
|
|
36
|
+
Requires-Dist: nest-asyncio >=1.5
|
|
37
37
|
Requires-Dist: ipykernel
|
|
38
|
-
Requires-Dist: Send2Trash
|
|
39
|
-
Requires-Dist: terminado
|
|
38
|
+
Requires-Dist: Send2Trash >=1.8.0
|
|
39
|
+
Requires-Dist: terminado >=0.8.3
|
|
40
40
|
Requires-Dist: prometheus-client
|
|
41
|
-
Requires-Dist: nbclassic
|
|
41
|
+
Requires-Dist: nbclassic >=0.4.7
|
|
42
42
|
Provides-Extra: docs
|
|
43
43
|
Requires-Dist: sphinx ; extra == 'docs'
|
|
44
44
|
Requires-Dist: nbsphinx ; extra == 'docs'
|
|
@@ -53,7 +53,7 @@ Requires-Dist: coverage ; extra == 'test'
|
|
|
53
53
|
Requires-Dist: requests ; extra == 'test'
|
|
54
54
|
Requires-Dist: testpath ; extra == 'test'
|
|
55
55
|
Requires-Dist: nbval ; extra == 'test'
|
|
56
|
-
Requires-Dist: selenium
|
|
56
|
+
Requires-Dist: selenium ==4.1.5 ; extra == 'test'
|
|
57
57
|
Requires-Dist: pytest-cov ; extra == 'test'
|
|
58
58
|
Requires-Dist: requests-unixsocket ; (sys_platform != "win32") and extra == 'test'
|
|
59
59
|
|
|
@@ -2,15 +2,15 @@ notebook/__init__.py,sha256=59peSoaLf0YFylJ5sFdvXdN-Qf2VbSunJ6u3ZOhYPg8,779
|
|
|
2
2
|
notebook/__main__.py,sha256=lzBt0C2yJ9j_2sNzP7k1Yi-Zk5_mWDZTQkSEf2tcZHY,101
|
|
3
3
|
notebook/_sysinfo.py,sha256=kJPiSuD62_OPm2XdGToKi0U6cNzN1o0FeCpOOv7-j6Q,2533
|
|
4
4
|
notebook/_tz.py,sha256=VQ0k1AyFzaDo1m-ARrLGDJ2sDmlhDmsfJDR0heQGJTY,936
|
|
5
|
-
notebook/_version.py,sha256=
|
|
5
|
+
notebook/_version.py,sha256=sCvBMQm8cvFVAjVk23LJbUX3J_LkizV0kdU6CVTcHGw,460
|
|
6
6
|
notebook/config_manager.py,sha256=3E0nvNuNCVCS3q3Fpc2uJMIznV8hDmq32fsBYDKWHag,4564
|
|
7
7
|
notebook/extensions.py,sha256=DIQBf4h16RX-SQM36eZmMpnqloa67gTM-K-9NQMqDdE,3348
|
|
8
8
|
notebook/jstest.py,sha256=5x7OYoUPxoHEc8uMO3zVbvHcgtbiPZ3C_Rg3xuhl62Q,20559
|
|
9
9
|
notebook/log.py,sha256=YNGoO0j3DIymOd721u2Ge5QhNkO6LKChp_fXXZYbuNk,2151
|
|
10
10
|
notebook/nbextensions.py,sha256=5_5-8xVYbqbjSyvDlRfsz7vflAjpa_S9f9FpJRVJJIc,40610
|
|
11
|
-
notebook/notebookapp.py,sha256
|
|
11
|
+
notebook/notebookapp.py,sha256=ds4L0jwbd_SboaVpbTwI93eTdrlIzltuVZHxSiI2r2U,96542
|
|
12
12
|
notebook/serverextensions.py,sha256=r407H9m9QwcTeEfvep5luIXYK7nEJxuCGzluNedd94c,10901
|
|
13
|
-
notebook/traittypes.py,sha256=
|
|
13
|
+
notebook/traittypes.py,sha256=zdrAPFRU2mMsx9AYYqJUfmT-UDtHhfCVigf4sgNNG9Y,13954
|
|
14
14
|
notebook/transutils.py,sha256=WlVaVFRbTiYi2XG5zYUFjLEMamh0q39R5-eYQrxZP2c,424
|
|
15
15
|
notebook/utils.py,sha256=I4z2a1afwLIs_7PO3ww_WWHOCrY2vSeEiD1vD72TmjQ,12173
|
|
16
16
|
notebook/auth/__init__.py,sha256=hLnzT06fOUSWQsGB43gqbv8VP6J6VYOgoBgNe1IOgXw,29
|
|
@@ -206,11 +206,11 @@ notebook/tree/tests/handlers.py,sha256=T_-QD7DveDfQTFZLDIa9oi5MDGr6MN3DNiiO_5Y85
|
|
|
206
206
|
notebook/tree/tests/test_tree_handler.py,sha256=pp1QZz7neZ4pwOLJjVlavRWPF5pYrRo2LVMVKu3-uE8,1078
|
|
207
207
|
notebook/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
208
|
notebook/view/handlers.py,sha256=aMzWp6IYPZOSm9Z6JZbgYSs2fbENzquO6P7MidMJU9w,862
|
|
209
|
-
notebook-6.5.
|
|
210
|
-
notebook-6.5.
|
|
211
|
-
notebook-6.5.
|
|
212
|
-
notebook-6.5.
|
|
213
|
-
notebook-6.5.
|
|
214
|
-
notebook-6.5.
|
|
215
|
-
notebook-6.5.
|
|
216
|
-
notebook-6.5.
|
|
209
|
+
notebook-6.5.7.data/data/share/applications/jupyter-notebook.desktop,sha256=1T32O1IER85CGv-a6IxiDfrQM8bzaLWbltJu-ToF8rc,242
|
|
210
|
+
notebook-6.5.7.data/data/share/icons/hicolor/scalable/apps/notebook.svg,sha256=ETQYUVVsEH_-RhIdGOVxtFShnli_0xKs06-0rzgS5wE,14487
|
|
211
|
+
notebook-6.5.7.dist-info/LICENSE,sha256=hXzND0QLNWpj3CpVXffgDF8Q5XT4o6nLJrc6Qe7n7kc,2869
|
|
212
|
+
notebook-6.5.7.dist-info/METADATA,sha256=MI2VblzIa5HgAcz30PDmZ3ME3M9JQL611DuQ_iXu3sc,2496
|
|
213
|
+
notebook-6.5.7.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
214
|
+
notebook-6.5.7.dist-info/entry_points.txt,sha256=vA9DT6gpwWrkHnTmd0VTp17_SAz-Zc2QXXc8g5L9Z8A,236
|
|
215
|
+
notebook-6.5.7.dist-info/top_level.txt,sha256=2G0WZFzZhixyVqs6itqgKLxSNaqs3RgJ8iHOps3zIOg,9
|
|
216
|
+
notebook-6.5.7.dist-info/RECORD,,
|
{notebook-6.5.5.data → notebook-6.5.7.data}/data/share/applications/jupyter-notebook.desktop
RENAMED
|
File without changes
|
{notebook-6.5.5.data → notebook-6.5.7.data}/data/share/icons/hicolor/scalable/apps/notebook.svg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|