File tree 3 files changed +26
-26
lines changed
3 files changed +26
-26
lines changed Original file line number Diff line number Diff line change 4
4
try :
5
5
from importlib .metadata import version
6
6
except ImportError :
7
- # Not available until Python 3.8
8
- version = lambda _ : "0.0.0" # noqa
7
+ from importlib_metadata import version # type:ignore
9
8
10
9
__version__ = version ("nbformat" )
11
10
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " nbformat-schema" ,
3
- "version" : " 5.7.0-b0" ,
4
- "description" : " JSON schemata for Jupyter notebook formats" ,
5
- "main" : " index.js" ,
6
- "files" : [
7
- " nbformat/v3/nbformat.v3.schema.json" ,
8
- " nbformat/v4/nbformat.v4.schema.json"
9
- ],
10
- "repository" : {
11
- "type" : " git" ,
12
- "url" : " git+https://github.com/jupyter/nbformat.git"
13
- },
14
- "keywords" : [
15
- " jupyter" ,
16
- " notebook" ,
17
- " json-schema"
18
- ],
19
- "author" : " Project Jupyter Contributors" ,
20
- "license" : " BSD-3-Clause" ,
21
- "bugs" : {
22
- "url" : " https://github.com/jupyter/nbformat/issues"
23
- },
24
- "homepage" : " https://nbformat.readthedocs.io"
25
- }
2
+ "name" : " nbformat-schema" ,
3
+ "version" : " 5.7.0-b0" ,
4
+ "description" : " JSON schemata for Jupyter notebook formats" ,
5
+ "main" : " index.js" ,
6
+ "files" : [
7
+ " nbformat/v3/nbformat.v3.schema.json" ,
8
+ " nbformat/v4/nbformat.v4.schema.json"
9
+ ],
10
+ "repository" : {
11
+ "type" : " git" ,
12
+ "url" : " git+https://github.com/jupyter/nbformat.git"
13
+ },
14
+ "keywords" : [
15
+ " jupyter" ,
16
+ " notebook" ,
17
+ " json-schema"
18
+ ],
19
+ "author" : " Project Jupyter Contributors" ,
20
+ "license" : " BSD-3-Clause" ,
21
+ "bugs" : {
22
+ "url" : " https://github.com/jupyter/nbformat/issues"
23
+ },
24
+ "homepage" : " https://nbformat.readthedocs.io"
25
+ }
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ dependencies = [
26
26
" jsonschema>=2.6" ,
27
27
" jupyter_core" ,
28
28
" traitlets>=5.1" ,
29
+ " importlib-metadata>=3.6;python_version<\" 3.8\" " ,
29
30
]
30
31
31
32
[[project .authors ]]
You can’t perform that action at this time.
0 commit comments