Skip to content

Commit 2bc241c

Browse files
authored
Merge pull request #307 from blink1073/fix-version-37
2 parents 0201f8b + 9caa2f3 commit 2bc241c

File tree

3 files changed

+26
-26
lines changed

3 files changed

+26
-26
lines changed

nbformat/_version.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
try:
55
from importlib.metadata import version
66
except ImportError:
7-
# Not available until Python 3.8
8-
version = lambda _: "0.0.0" # noqa
7+
from importlib_metadata import version # type:ignore
98

109
__version__ = version("nbformat")
1110

package.json

+24-24
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
{
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+
}

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ dependencies = [
2626
"jsonschema>=2.6",
2727
"jupyter_core",
2828
"traitlets>=5.1",
29+
"importlib-metadata>=3.6;python_version<\"3.8\"",
2930
]
3031

3132
[[project.authors]]

0 commit comments

Comments
 (0)