You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: peps/pep-0739/python-build-info-v1.0.schema.json
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -19,15 +19,15 @@
19
19
},
20
20
"base_prefix": {
21
21
"type": "string",
22
-
"description": "Base prefix of the Python installation.\n\nEither an absolute path, or a relative path to directory where this file is contained.",
22
+
"description": "Base prefix of the Python installation.\n\nEither an absolute path, or a path relative to directory where this file is contained.",
23
23
"examples": [
24
24
"/usr",
25
25
"../.."
26
26
]
27
27
},
28
28
"base_interpreter": {
29
29
"type": "string",
30
-
"description": "The path to the Python interprer of the base installation.\n\nEither an absolute path, or a relative path to the path defined in the ``base_prefix`` key.\n\nThis field **MUST** be present if the installation provides an interpreter executable.",
30
+
"description": "The path to the Python interprer of the base installation.\n\nEither an absolute path, or a path relative to ``base_prefix``.\n\nThis field **MUST** be present if the installation provides an interpreter executable.",
31
31
"examples": [
32
32
"/usr/bin/python",
33
33
"bin/python"
@@ -199,23 +199,23 @@
199
199
"properties": {
200
200
"dynamic": {
201
201
"type": "string",
202
-
"description": "The path to the dynamic ``libpython`` library.\n\nEither an absolute path, or a relative path to the path defined in the ``base_prefix`` key.\n\nThis field **MUST** be present if the Python installation provides a dynamic ``libpython`` library, otherwise this entry will be missing.",
202
+
"description": "The path to the dynamic ``libpython`` library.\n\nEither an absolute path, or a path relative to ``base_prefix``.\n\nThis field **MUST** be present if the Python installation provides a dynamic ``libpython`` library, otherwise this entry will be missing.",
203
203
"examples": [
204
204
"/usr/lib/libpython3.14.so.1.0",
205
205
"lib/libpython3.14.so.1.0"
206
206
]
207
207
},
208
208
"dynamic_stableabi": {
209
209
"type": "string",
210
-
"description": "The path to the dynamic ``libpython`` library for the stable ABI.\n\nEither an absolute path, or a relative path to the path defined in the ``base_prefix`` key.\n\nThis field **MUST** be present if the Python installation provides a dynamic ``libpython`` library targetting the Stable ABI, otherwise this entry will be missing.\n\nIf this key is present ``dynamic`` **MUST** also be set.",
210
+
"description": "The path to the dynamic ``libpython`` library for the stable ABI.\n\nEither an absolute path, or a path relative to ``base_prefix``.\n\nThis field **MUST** be present if the Python installation provides a dynamic ``libpython`` library targetting the Stable ABI, otherwise this entry will be missing.\n\nIf this key is present ``dynamic`` **MUST** also be set.",
211
211
"examples": [
212
212
"/usr/lib/libpython3.so",
213
213
"lib/libpython3.so"
214
214
]
215
215
},
216
216
"static": {
217
217
"type": "string",
218
-
"description": "The path to the static ``libpython`` library.\n\nEither an absolute path, or a relative path to the path defined in the ``base_prefix`` key.\n\nThis field **MUST** be present if the Python installation provides a static ``libpython`` library, otherwise this entry will be missing.",
218
+
"description": "The path to the static ``libpython`` library.\n\nEither an absolute path, or a path relative to ``base_prefix``.\n\nThis field **MUST** be present if the Python installation provides a static ``libpython`` library, otherwise this entry will be missing.",
"description": "The path to the C API headers.\n\nEither an absolute path, or a relative path to the path defined in the ``base_prefix`` key.",
240
+
"description": "The path to the C API headers.\n\nEither an absolute path, or a path relative to ``base_prefix``.",
241
241
"examples": [
242
242
"/usr/include/python3.14",
243
243
"include/python3.14"
244
244
]
245
245
},
246
246
"pkgconfig_path": {
247
247
"type": "string",
248
-
"description": "The path to the pkg-config definition files.\n\nEither an absolute path, or a relative path to the path defined in the ``base_prefix`` key.\n\nThis field **MUST** be present if the Python implementation provides pkg-config definition files, otherwise this section will be missing.",
248
+
"description": "The path to the pkg-config definition files.\n\nEither an absolute path, or a path relative to ``base_prefix``.\n\nThis field **MUST** be present if the Python implementation provides pkg-config definition files, otherwise this section will be missing.",
0 commit comments