* Create greyed-out Pyodide icon * Add Pyodide icon to NumPy and scikit-learn * Add new Pyodide data to projects fields * Allow local SVG usage if missing in simple-icons * Fix deprecated `login_or_token` argument * Regenerate working examples with Android, iOS, and Pyodide data * Add Pyodide to the "Usage" table * Add ⚠️⁵ to the table indicating Pyodide being untested * add pybase64 to the list of projects building pyodide wheels * Update and format table + maybe this looks nicer * Downscale Pyodide SVG to 16px width * Reformat tables and superscript references a bit more --------- Co-authored-by: Matthieu Darbois <mayeut@users.noreply.github.com>
37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"$id": "https://github.com/pypa/cibuildwheel/blob/main/cibuildwheel/docs/data/projects.schema.json",
|
|
"type": "array",
|
|
"description": "The projects file for cibuildwheel",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"name": { "type": "string" },
|
|
"gh": { "type": "string", "pattern": "[^/]*/[^/]*" },
|
|
"stars": { "$ref": "#/items/properties/gh" },
|
|
"pypi": { "type": "string" },
|
|
"notes": { "type": "string" },
|
|
"ci": {
|
|
"type": "array",
|
|
"items": {
|
|
"enum": [
|
|
"github",
|
|
"travisci",
|
|
"circleci",
|
|
"gitlab",
|
|
"cirrusci",
|
|
"azurepipelines"
|
|
]
|
|
}
|
|
},
|
|
"ci_config": { "type": "string" },
|
|
"os": {
|
|
"type": "array",
|
|
"items": { "enum": ["windows", "apple", "linux", "android", "ios", "pyodide"] }
|
|
}
|
|
},
|
|
"required": ["name", "gh", "ci", "os"]
|
|
}
|
|
}
|