@schemastore/cibuildwheel 1.0.1 → 1.0.2
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.
- package/README.md +1 -1
- package/index.d.ts +2 -10
- package/package.json +1 -1
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -217,14 +217,6 @@ export type CIBW_TEST_RUNTIME =
|
|
|
217
217
|
| {
|
|
218
218
|
args: string[];
|
|
219
219
|
};
|
|
220
|
-
/**
|
|
221
|
-
* Execute a shell command to repair each built wheel.
|
|
222
|
-
*/
|
|
223
|
-
export type CIBW_REPAIR_WHEEL_COMMAND1 = string | string[];
|
|
224
|
-
/**
|
|
225
|
-
* Execute a shell command to repair each built wheel.
|
|
226
|
-
*/
|
|
227
|
-
export type CIBW_REPAIR_WHEEL_COMMAND2 = string | string[];
|
|
228
220
|
|
|
229
221
|
/**
|
|
230
222
|
* cibuildwheel's toml file, uses the same source as pyproject.toml.
|
|
@@ -415,7 +407,7 @@ export interface HttpsJsonSchemastoreOrgPartialCibuildwheelJson {
|
|
|
415
407
|
'musllinux-x86_64-image'?: CIBW_MUSLLINUX_X86_64_IMAGE;
|
|
416
408
|
'xbuild-tools'?: CIBW_XBUILD_TOOLS;
|
|
417
409
|
'pyodide-version'?: CIBW_PYODIDE_VERSION;
|
|
418
|
-
'repair-wheel-command'?:
|
|
410
|
+
'repair-wheel-command'?: CIBW_REPAIR_WHEEL_COMMAND;
|
|
419
411
|
'test-command'?: CIBW_TEST_COMMAND;
|
|
420
412
|
'test-extras'?: CIBW_TEST_EXTRAS;
|
|
421
413
|
'test-sources'?: CIBW_TEST_SOURCES;
|
|
@@ -457,7 +449,7 @@ export interface HttpsJsonSchemastoreOrgPartialCibuildwheelJson {
|
|
|
457
449
|
environment?: CIBW_ENVIRONMENT;
|
|
458
450
|
'xbuild-tools'?: CIBW_XBUILD_TOOLS;
|
|
459
451
|
'pyodide-version'?: CIBW_PYODIDE_VERSION;
|
|
460
|
-
'repair-wheel-command'?:
|
|
452
|
+
'repair-wheel-command'?: CIBW_REPAIR_WHEEL_COMMAND;
|
|
461
453
|
'test-command'?: CIBW_TEST_COMMAND;
|
|
462
454
|
'test-extras'?: CIBW_TEST_EXTRAS;
|
|
463
455
|
'test-sources'?: CIBW_TEST_SOURCES;
|
package/package.json
CHANGED