Skip to content

Commit

Permalink
Deployed 71a772b to dev with MkDocs 1.5.3 and mike 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 3, 2024
1 parent e85221f commit aae4e16
Show file tree
Hide file tree
Showing 4 changed files with 175 additions and 56 deletions.
Binary file modified dev/__pycache__/docs_hooks.cpython-312.pyc
Binary file not shown.
159 changes: 139 additions & 20 deletions dev/schema/manifest/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,22 @@
"$ref": "#/$defs/PyPIOptions",
"description": "Options related to PyPI indexes, on the default feature"
},
"run-dependencies": {
"title": "Run-Dependencies",
"description": "The run-dependencies for the [package]",
"type": "object",
"additionalProperties": {
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"$ref": "#/$defs/MatchspecTable"
}
]
}
},
"system-requirements": {
"$ref": "#/$defs/SystemRequirements",
"description": "The system requirements of the project"
Expand Down Expand Up @@ -246,41 +262,139 @@
}
}
},
"BuildSystem": {
"title": "BuildSystem",
"BuildBackend": {
"title": "BuildBackend",
"type": "object",
"additionalProperties": false,
"properties": {
"build-backend": {
"title": "Build-Backend",
"description": "The build executable to call",
"branch": {
"title": "Branch",
"description": "A git branch to use",
"type": "string",
"minLength": 1
},
"channels": {
"title": "Channels",
"description": "The `conda` channels that are used to fetch the build backend from",
"type": "array",
"items": {
"build": {
"title": "Build",
"description": "The build string of the package",
"type": "string",
"minLength": 1
},
"build-number": {
"title": "Build-Number",
"description": "The build number of the package, can be a spec like `>=1` or `<=10` or `1`",
"type": "string",
"minLength": 1
},
"channel": {
"title": "Channel",
"description": "The channel the packages needs to be fetched from",
"type": "string",
"minLength": 1,
"examples": [
"conda-forge",
"pytorch",
"https://repo.prefix.dev/conda-forge"
]
},
"file-name": {
"title": "File-Name",
"description": "The file name of the package",
"type": "string",
"minLength": 1
},
"git": {
"title": "Git",
"description": "The git URL to the repo",
"type": "string",
"minLength": 1
},
"md5": {
"title": "Md5",
"description": "The md5 hash of the package",
"type": "string",
"pattern": "^[a-fA-F0-9]{32}$"
},
"name": {
"title": "Name",
"description": "The name of the build backend package",
"type": "string",
"minLength": 1
},
"path": {
"title": "Path",
"description": "The path to the package",
"type": "string",
"minLength": 1
},
"rev": {
"title": "Rev",
"description": "A git SHA revision to use",
"type": "string",
"minLength": 1
},
"sha256": {
"title": "Sha256",
"description": "The sha256 hash of the package",
"type": "string",
"pattern": "^[a-fA-F0-9]{64}$"
},
"subdir": {
"title": "Subdir",
"description": "The subdir of the package, also known as platform",
"type": "string",
"minLength": 1
},
"tag": {
"title": "Tag",
"description": "A git tag to use",
"type": "string",
"minLength": 1
},
"url": {
"title": "Url",
"description": "The URL to the package",
"type": "string",
"minLength": 1
},
"version": {
"title": "Version",
"description": "The version of the package in [MatchSpec](https://github.com/conda/conda/blob/078e7ee79381060217e1ec7f9b0e9cf80ecc8f3f/conda/models/match_spec.py) format",
"type": "string",
"minLength": 1
}
}
},
"BuildSystem": {
"title": "BuildSystem",
"type": "object",
"required": [
"build-backend"
],
"additionalProperties": false,
"properties": {
"additional-dependencies": {
"title": "Additional-Dependencies",
"description": "Additional dependencies to install alongside the build backend",
"type": "object",
"additionalProperties": {
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"type": "string",
"format": "uri",
"minLength": 1
},
{
"$ref": "#/$defs/ChannelInlineTable"
"$ref": "#/$defs/MatchspecTable"
}
]
}
},
"dependencies": {
"title": "Dependencies",
"description": "The dependencies for the build backend",
"build-backend": {
"$ref": "#/$defs/BuildBackend",
"description": "The build backend to instantiate"
},
"channels": {
"title": "Channels",
"description": "The `conda` channels that are used to fetch the build backend from",
"type": "array",
"items": {
"anyOf": [
Expand All @@ -289,7 +403,12 @@
"minLength": 1
},
{
"$ref": "#/$defs/MatchspecTable"
"type": "string",
"format": "uri",
"minLength": 1
},
{
"$ref": "#/$defs/ChannelInlineTable"
}
]
}
Expand Down
Loading

0 comments on commit aae4e16

Please sign in to comment.