From e006a69fe83808d5eaebaa27f535914cf1b36105 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Thu, 18 Dec 2025 18:54:23 -0600 Subject: [PATCH] Configure prettier `prose-wrap` in `.prettierrc` instead of the CLI (#17184) This also removes the file-specific targets from prettier execution which means we're including `.json`, `.css`, and `.html` files, which seems like an improvement. Co-authored-by: Claude --- .claude/hooks/post-edit-format.py | 14 +- .github/workflows/ci.yml | 4 +- .prettierrc | 10 + CONTRIBUTING.md | 4 +- crates/uv-python/download-metadata.json | 2 +- docs/.overrides/main.html | 65 +- .../integrations/analytics/fathom.html | 6 +- docs/js/extra.js | 8 +- docs/stylesheets/extra.css | 32 +- scripts/generate-crate-readmes.py | 3 +- uv.schema.json | 585 ++++-------------- 11 files changed, 213 insertions(+), 520 deletions(-) create mode 100644 .prettierrc diff --git a/.claude/hooks/post-edit-format.py b/.claude/hooks/post-edit-format.py index b0c7609bf..e033634c0 100644 --- a/.claude/hooks/post-edit-format.py +++ b/.claude/hooks/post-edit-format.py @@ -35,14 +35,12 @@ def format_python(file_path: str, cwd: str) -> None: pass -def format_prettier(file_path: str, cwd: str, prose_wrap: bool = False) -> None: +def format_prettier(file_path: str, cwd: str) -> None: """Format files with prettier.""" - args = ["npx", "prettier", "--write"] - if prose_wrap: - args.extend(["--prose-wrap", "always"]) - args.append(file_path) try: - subprocess.run(args, cwd=cwd, capture_output=True) + subprocess.run( + ["npx", "prettier", "--write", file_path], cwd=cwd, capture_output=True + ) except FileNotFoundError: pass @@ -71,10 +69,8 @@ def main() -> None: format_rust(file_path, cwd) elif ext in (".py", ".pyi"): format_python(file_path, cwd) - elif ext in (".json5", ".yaml", ".yml"): + elif ext in (".json5", ".yaml", ".yml", ".md"): format_prettier(file_path, cwd) - elif ext == ".md": - format_prettier(file_path, cwd, prose_wrap=True) if __name__ == "__main__": diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8cfe1f152..ec0036ae4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,9 +104,7 @@ jobs: run: cargo fmt --all --check - name: "Prettier" - run: | - npx prettier --check "**/*.{json5,yaml,yml}" - npx prettier --prose-wrap always --check "**/*.md" + run: npx prettier --check . - name: "README check" run: python scripts/transform_readme.py --target pypi diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 000000000..60f6c4f8a --- /dev/null +++ b/.prettierrc @@ -0,0 +1,10 @@ +{ + "overrides": [ + { + "files": ["*.md"], + "options": { + "proseWrap": "always" + } + } + ] +} diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a767badff..bca127bb0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -208,14 +208,14 @@ Cloudflare Pages. After making changes to the documentation, format the markdown files with: ```shell -npx prettier --prose-wrap always --write "**/*.md" +npx prettier --write "**/*.md" ``` Note that the command above requires Node.js and npm to be installed on your system. As an alternative, you can run this command using Docker: ```console -$ docker run --rm -v .:/src/ -w /src/ node:alpine npx prettier --prose-wrap always --write "**/*.md" +$ docker run --rm -v .:/src/ -w /src/ node:alpine npx prettier --write "**/*.md" ``` ## Releases diff --git a/crates/uv-python/download-metadata.json b/crates/uv-python/download-metadata.json index d6a437675..2560d0c82 100644 --- a/crates/uv-python/download-metadata.json +++ b/crates/uv-python/download-metadata.json @@ -66588,4 +66588,4 @@ "variant": null, "build": "20.2.0" } -} \ No newline at end of file +} diff --git a/docs/.overrides/main.html b/docs/.overrides/main.html index 774eb6d2c..ce195ee79 100644 --- a/docs/.overrides/main.html +++ b/docs/.overrides/main.html @@ -1,34 +1,47 @@ -{% extends "base.html" %} - -{% block htmltitle %} -{% if page.meta and page.meta.title %} +{% extends "base.html" %} {% block htmltitle %} {% if page.meta and +page.meta.title %} {{ page.meta.title }} | {{ config.site_name }} {% elif page.title and not page.is_homepage %} {{ page.title | striptags }} | {{ config.site_name }} {% else %} {{ config.site_name }} -{% endif %} -{% endblock %} - -{% block extrahead %} - - - - - - - - +{% endif %} {% endblock %} {% block extrahead %} + + + + + + + + {% endblock %} diff --git a/docs/.overrides/partials/integrations/analytics/fathom.html b/docs/.overrides/partials/integrations/analytics/fathom.html index 1bb6e52d3..77e89d413 100644 --- a/docs/.overrides/partials/integrations/analytics/fathom.html +++ b/docs/.overrides/partials/integrations/analytics/fathom.html @@ -1 +1,5 @@ - + diff --git a/docs/js/extra.js b/docs/js/extra.js index 818be7724..1c5fdf03f 100644 --- a/docs/js/extra.js +++ b/docs/js/extra.js @@ -8,8 +8,8 @@ function cleanupClipboardText(targetSelector) { .filter( (node) => !excludedClasses.some((className) => - node?.classList?.contains(className) - ) + node?.classList?.contains(className), + ), ) .map((node) => node.textContent) .filter((s) => s != ""); @@ -23,7 +23,7 @@ function setCopyText() { const attr = "clipboardText"; // all "copy" buttons whose target selector is a element const elements = document.querySelectorAll( - 'button[data-clipboard-target$="code"]' + 'button[data-clipboard-target$="code"]', ); const observer = new IntersectionObserver((entries) => { entries.forEach((entry) => { @@ -33,7 +33,7 @@ function setCopyText() { entry.target.dataset[attr] === undefined ) { entry.target.dataset[attr] = cleanupClipboardText( - entry.target.dataset.clipboardTarget + entry.target.dataset.clipboardTarget, ); } }); diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index ac768ad79..b6838abd6 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -125,7 +125,6 @@ See https://github.com/astral-sh/uv/issues/5130 */ } } - /* Always take the full screen for content, require scrolling to see the footer This stops the size of the nav from jumping around when you visit a page without a lot of content (i.e., an overview page). We don't apply this to sma screens @@ -144,8 +143,8 @@ because the nav is in a hamburger menu anyway } /* Remove the bold from the section headings, use a larger font instead */ .md-nav__item--section > .md-nav__link { - font-weight: normal; - font-size: 0.85rem; + font-weight: normal; + font-size: 0.85rem; } /* Reducing spacing between nav items to fit more content First, disable `nav__link` spacing then use `nav__item` to enforce margins this reduces inconsistencies in the spacing. */ @@ -161,15 +160,32 @@ because the nav is in a hamburger menu anyway margin-top: 1em; } /* Decrease the font size of items in a collapsible section */ - .md-nav__item--section> .md-nav > .md-nav__list > .md-nav__item > .md-nav > .md-nav__list { + .md-nav__item--section + > .md-nav + > .md-nav__list + > .md-nav__item + > .md-nav + > .md-nav__list { font-size: 0.725rem; } /* Increase top margin on the first item of a collapsible section */ - .md-nav__item--section> .md-nav > .md-nav__list > .md-nav__item > .md-nav > .md-nav__list > .md-nav__item:first-of-type { + .md-nav__item--section + > .md-nav + > .md-nav__list + > .md-nav__item + > .md-nav + > .md-nav__list + > .md-nav__item:first-of-type { margin-top: 0.5em; } /* Increase bottom margin on the last item of a collapsible section */ - .md-nav__item--section> .md-nav > .md-nav__list > .md-nav__item > .md-nav > .md-nav__list > .md-nav__item:last-of-type { + .md-nav__item--section + > .md-nav + > .md-nav__list + > .md-nav__item + > .md-nav + > .md-nav__list + > .md-nav__item:last-of-type { margin-bottom: 0.575em; } /* Increase the size of the first nav item to match the sections @@ -186,7 +202,9 @@ because the nav is in a hamburger menu anyway } /* See: https://mkdocstrings.github.io/recipes/#prevent-selection-of-prompts-and-output-in-python-code-blocks */ -.highlight .gp, .highlight .go { /* Generic.Prompt, Generic.Output */ +.highlight .gp, +.highlight .go { + /* Generic.Prompt, Generic.Output */ user-select: none; } diff --git a/scripts/generate-crate-readmes.py b/scripts/generate-crate-readmes.py index 489780b54..b3a5e4755 100644 --- a/scripts/generate-crate-readmes.py +++ b/scripts/generate-crate-readmes.py @@ -150,8 +150,7 @@ def main() -> None: # Format all generated READMEs once at the end subprocess.run( - ["npx", "prettier", "--write", "--prose-wrap", "always"] - + [str(path) for path in generated_paths], + ["npx", "prettier", "--write"] + [str(path) for path in generated_paths], check=True, ) diff --git a/uv.schema.json b/uv.schema.json index 78784098a..9a19d39fc 100644 --- a/uv.schema.json +++ b/uv.schema.json @@ -17,10 +17,7 @@ }, "allow-insecure-host": { "description": "Allow insecure connections to host.\n\nExpects to receive either a hostname (e.g., `localhost`), a host-port pair (e.g.,\n`localhost:8080`), or a URL (e.g., `https://localhost`).\n\nWARNING: Hosts included in this list will not be verified against the system's certificate\nstore. Only use `--allow-insecure-host` in a secure network with verified sources, as it\nbypasses SSL verification and could expose you to MITM attacks.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/TrustedHost" } @@ -38,27 +35,18 @@ }, "build-constraint-dependencies": { "description": "PEP 508-style requirements, e.g., `ruff==0.5.0`, or `ruff @ https://...`.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "type": "string" } }, "cache-dir": { "description": "Path to the cache directory.\n\nDefaults to `$XDG_CACHE_HOME/uv` or `$HOME/.cache/uv` on Linux and macOS, and\n`%LOCALAPPDATA%\\uv\\cache` on Windows.", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "cache-keys": { "description": "The keys to consider when caching builds for the project.\n\nCache keys enable you to specify the files or directories that should trigger a rebuild when\nmodified. By default, uv will rebuild a project whenever the `pyproject.toml`, `setup.py`,\nor `setup.cfg` files in the project directory are modified, or if a `src` directory is\nadded or removed, i.e.:\n\n```toml\ncache-keys = [{ file = \"pyproject.toml\" }, { file = \"setup.py\" }, { file = \"setup.cfg\" }, { dir = \"src\" }]\n```\n\nAs an example: if a project uses dynamic metadata to read its dependencies from a\n`requirements.txt` file, you can specify `cache-keys = [{ file = \"requirements.txt\" }, { file = \"pyproject.toml\" }]`\nto ensure that the project is rebuilt whenever the `requirements.txt` file is modified (in\naddition to watching the `pyproject.toml`).\n\nGlobs are supported, following the syntax of the [`glob`](https://docs.rs/glob/0.3.1/glob/struct.Pattern.html)\ncrate. For example, to invalidate the cache whenever a `.toml` file in the project directory\nor any of its subdirectories is modified, you can specify `cache-keys = [{ file = \"**/*.toml\" }]`.\nNote that the use of globs can be expensive, as uv may need to walk the filesystem to\ndetermine whether any files have changed.\n\nCache keys can also include version control information. For example, if a project uses\n`setuptools_scm` to read its version from a Git commit, you can specify `cache-keys = [{ git = { commit = true }, { file = \"pyproject.toml\" }]`\nto include the current Git commit hash in the cache key (in addition to the\n`pyproject.toml`). Git tags are also supported via `cache-keys = [{ git = { commit = true, tags = true } }]`.\n\nCache keys can also include environment variables. For example, if a project relies on\n`MACOSX_DEPLOYMENT_TARGET` or other environment variables to determine its behavior, you can\nspecify `cache-keys = [{ env = \"MACOSX_DEPLOYMENT_TARGET\" }]` to invalidate the cache\nwhenever the environment variable changes.\n\nCache keys only affect the project defined by the `pyproject.toml` in which they're\nspecified (as opposed to, e.g., affecting all members in a workspace), and all paths and\nglobs are interpreted as relative to the project directory.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/CacheKey" } @@ -76,35 +64,23 @@ }, "compile-bytecode": { "description": "Compile Python files to bytecode after installation.\n\nBy default, uv does not compile Python (`.py`) files to bytecode (`__pycache__/*.pyc`);\ninstead, compilation is performed lazily the first time a module is imported. For use-cases\nin which start time is critical, such as CLI applications and Docker containers, this option\ncan be enabled to trade longer installation times for faster start times.\n\nWhen enabled, uv will process the entire site-packages directory (including packages that\nare not being modified by the current operation) for consistency. Like pip, it will also\nignore errors.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "concurrent-builds": { "description": "The maximum number of source distributions that uv will build concurrently at any given\ntime.\n\nDefaults to the number of available CPU cores.", - "type": [ - "integer", - "null" - ], + "type": ["integer", "null"], "format": "uint", "minimum": 1 }, "concurrent-downloads": { "description": "The maximum number of in-flight concurrent downloads that uv will perform at any given\ntime.", - "type": [ - "integer", - "null" - ], + "type": ["integer", "null"], "format": "uint", "minimum": 1 }, "concurrent-installs": { "description": "The number of threads used when installing and unzipping packages.\n\nDefaults to the number of available CPU cores.", - "type": [ - "integer", - "null" - ], + "type": ["integer", "null"], "format": "uint", "minimum": 1 }, @@ -143,10 +119,7 @@ }, "constraint-dependencies": { "description": "PEP 508-style requirements, e.g., `ruff==0.5.0`, or `ruff @ https://...`.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "type": "string" } @@ -175,40 +148,28 @@ }, "dependency-metadata": { "description": "Pre-defined static metadata for dependencies of the project (direct or transitive). When\nprovided, enables the resolver to use the specified metadata instead of querying the\nregistry or building the relevant package from source.\n\nMetadata should be provided in adherence with the [Metadata 2.3](https://packaging.python.org/en/latest/specifications/core-metadata/)\nstandard, though only the following fields are respected:\n\n- `name`: The name of the package.\n- (Optional) `version`: The version of the package. If omitted, the metadata will be applied\n to all versions of the package.\n- (Optional) `requires-dist`: The dependencies of the package (e.g., `werkzeug>=0.14`).\n- (Optional) `requires-python`: The Python version required by the package (e.g., `>=3.10`).\n- (Optional) `provides-extra`: The extras provided by the package.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/StaticMetadata" } }, "dev-dependencies": { "description": "PEP 508-style requirements, e.g., `ruff==0.5.0`, or `ruff @ https://...`.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "type": "string" } }, "environments": { "description": "A list of environment markers, e.g., `python_version >= '3.6'`.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "type": "string" } }, "exclude-dependencies": { "description": "Package names to exclude, e.g., `werkzeug`, `numpy`.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "type": "string" } @@ -259,20 +220,14 @@ }, "extra-index-url": { "description": "Extra URLs of package indexes to use, in addition to `--index-url`.\n\nAccepts either a repository compliant with [PEP 503](https://peps.python.org/pep-0503/)\n(the simple repository API), or a local directory laid out in the same format.\n\nAll indexes provided via this flag take priority over the index specified by\n[`index_url`](#index-url) or [`index`](#index) with `default = true`. When multiple indexes\nare provided, earlier values take priority.\n\nTo control uv's resolution strategy when multiple indexes are present, see\n[`index_strategy`](#index-strategy).\n\n(Deprecated: use `index` instead.)", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/IndexUrl" } }, "find-links": { "description": "Locations to search for candidate distributions, in addition to those found in the registry\nindexes.\n\nIf a path, the target must be a directory that contains packages as wheel files (`.whl`) or\nsource distributions (e.g., `.tar.gz` or `.zip`) at the top level.\n\nIf a URL, the page must contain a flat list of links to package files adhering to the\nformats described above.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/IndexUrl" } @@ -290,10 +245,7 @@ }, "index": { "description": "The indexes to use when resolving dependencies.\n\nAccepts either a repository compliant with [PEP 503](https://peps.python.org/pep-0503/)\n(the simple repository API), or a local directory laid out in the same format.\n\nIndexes are considered in the order in which they're defined, such that the first-defined\nindex has the highest priority. Further, the indexes provided by this setting are given\nhigher priority than any indexes specified via [`index_url`](#index-url) or\n[`extra_index_url`](#extra-index-url). uv will only consider the first index that contains\na given package, unless an alternative [index strategy](#index-strategy) is specified.\n\nIf an index is marked as `explicit = true`, it will be used exclusively for the\ndependencies that select it explicitly via `[tool.uv.sources]`, as in:\n\n```toml\n[[tool.uv.index]]\nname = \"pytorch\"\nurl = \"https://download.pytorch.org/whl/cu121\"\nexplicit = true\n\n[tool.uv.sources]\ntorch = { index = \"pytorch\" }\n```\n\nIf an index is marked as `default = true`, it will be moved to the end of the prioritized list, such that it is\ngiven the lowest priority when resolving packages. Additionally, marking an index as default will disable the\nPyPI default index.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "default": null, "items": { "$ref": "#/definitions/Index" @@ -345,113 +297,71 @@ }, "managed": { "description": "Whether the project is managed by uv. If `false`, uv will ignore the project when\n`uv run` is invoked.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "native-tls": { "description": "Whether to load TLS certificates from the platform's native certificate store.\n\nBy default, uv loads certificates from the bundled `webpki-roots` crate. The\n`webpki-roots` are a reliable set of trust roots from Mozilla, and including them in uv\nimproves portability and performance (especially on macOS).\n\nHowever, in some cases, you may want to use the platform's native certificate store,\nespecially if you're relying on a corporate trust root (e.g., for a mandatory proxy) that's\nincluded in your system's certificate store.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-binary": { "description": "Don't install pre-built wheels.\n\nThe given packages will be built and installed from source. The resolver will still use\npre-built wheels to extract package metadata, if available.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-binary-package": { "description": "Don't install pre-built wheels for a specific package.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/PackageName" } }, "no-build": { "description": "Don't build source distributions.\n\nWhen enabled, resolving will not run arbitrary Python code. The cached wheels of\nalready-built source distributions will be reused, but operations that require building\ndistributions will exit with an error.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-build-isolation": { "description": "Disable isolation when building source distributions.\n\nAssumes that build dependencies specified by [PEP 518](https://peps.python.org/pep-0518/)\nare already installed.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-build-isolation-package": { "description": "Disable isolation when building source distributions for a specific package.\n\nAssumes that the packages' build dependencies specified by [PEP 518](https://peps.python.org/pep-0518/)\nare already installed.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/PackageName" } }, "no-build-package": { "description": "Don't build source distributions for a specific package.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/PackageName" } }, "no-cache": { "description": "Avoid reading from or writing to the cache, instead using a temporary directory for the\nduration of the operation.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-index": { "description": "Ignore all registry indexes (e.g., PyPI), instead relying on direct URL dependencies and\nthose provided via `--find-links`.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-sources": { "description": "Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the\nstandards-compliant, publishable package metadata, as opposed to using any local or Git\nsources.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "offline": { "description": "Disable network access, relying only on locally cached data and locally available files.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "override-dependencies": { "description": "PEP 508-style requirements, e.g., `ruff==0.5.0`, or `ruff @ https://...`.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "type": "string" } }, "package": { "description": "Whether the project should be considered a Python package, or a non-package (\"virtual\")\nproject.\n\nPackages are built and installed into the virtual environment in editable mode and thus\nrequire a build backend, while virtual projects are _not_ built or installed; instead, only\ntheir dependencies are included in the virtual environment.\n\nCreating a package requires that a `build-system` is present in the `pyproject.toml`, and\nthat the project adheres to a structure that adheres to the build backend's expectations\n(e.g., a `src` layout).", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "pip": { "anyOf": [ @@ -476,10 +386,7 @@ }, "preview": { "description": "Whether to enable experimental, preview features.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "publish-url": { "description": "The URL for publishing packages to the Python package index (by default:\n).", @@ -494,10 +401,7 @@ }, "pypy-install-mirror": { "description": "Mirror URL to use for downloading managed PyPy installations.\n\nBy default, managed PyPy installations are downloaded from [downloads.python.org](https://downloads.python.org/).\nThis variable can be set to a mirror URL to use a different source for PyPy installations.\nThe provided URL will replace `https://downloads.python.org/pypy` in, e.g., `https://downloads.python.org/pypy/pypy3.8-v7.3.7-osx64.tar.bz2`.\n\nDistributions can be read from a\nlocal directory by using the `file://` URL scheme.", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "python-downloads": { "description": "Whether to allow Python downloads.", @@ -512,17 +416,11 @@ }, "python-downloads-json-url": { "description": "URL pointing to JSON of custom Python installations.", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "python-install-mirror": { "description": "Mirror URL for downloading managed Python installations.\n\nBy default, managed Python installations are downloaded from [`python-build-standalone`](https://github.com/astral-sh/python-build-standalone).\nThis variable can be set to a mirror URL to use a different source for Python installations.\nThe provided URL will replace `https://github.com/astral-sh/python-build-standalone/releases/download` in, e.g., `https://github.com/astral-sh/python-build-standalone/releases/download/20240713/cpython-3.12.4%2B20240713-aarch64-apple-darwin-install_only.tar.gz`.\n\nDistributions can be read from a local directory by using the `file://` URL scheme.", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "python-preference": { "description": "Whether to prefer using Python installations that are already present on the system, or\nthose that are downloaded and installed by uv.", @@ -537,27 +435,18 @@ }, "reinstall": { "description": "Reinstall all packages, regardless of whether they're already installed. Implies `refresh`.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "reinstall-package": { "description": "Reinstall a specific package, regardless of whether it's already installed. Implies\n`refresh-package`.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/PackageName" } }, "required-environments": { "description": "A list of environment markers, e.g., `sys_platform == 'darwin'.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "type": "string" } @@ -619,17 +508,11 @@ }, "upgrade": { "description": "Allow package upgrades, ignoring pinned versions in any existing output file.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "upgrade-package": { "description": "Allow upgrades for a specific package, ignoring pinned versions in any existing output\nfile.\n\nAccepts both standalone package names (`ruff`) and version specifiers (`ruff<0.5.0`).", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/Requirement" } @@ -795,9 +678,7 @@ } }, "additionalProperties": false, - "required": [ - "file" - ] + "required": ["file"] }, { "description": "Ex) `{ dir = \"src\" }`", @@ -808,9 +689,7 @@ } }, "additionalProperties": false, - "required": [ - "dir" - ] + "required": ["dir"] }, { "description": "Ex) `{ git = true }` or `{ git = { commit = true, tags = false } }`", @@ -821,9 +700,7 @@ } }, "additionalProperties": false, - "required": [ - "git" - ] + "required": ["git"] }, { "description": "Ex) `{ env = \"UV_CACHE_INFO\" }`", @@ -834,9 +711,7 @@ } }, "additionalProperties": false, - "required": [ - "env" - ] + "required": ["env"] } ] }, @@ -884,10 +759,7 @@ "properties": { "requires-python": { "description": "Version of python to require when installing this group", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] } } }, @@ -930,10 +802,7 @@ "$ref": "#/definitions/Requirement" } }, - "required": [ - "requirement", - "match-runtime" - ] + "required": ["requirement", "match-runtime"] } ] }, @@ -979,16 +848,10 @@ "type": "object", "properties": { "commit": { - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "tags": { - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] } }, "additionalProperties": false @@ -1042,10 +905,7 @@ }, "ignore-error-codes": { "description": "Status codes that uv should ignore when deciding whether\nto continue searching in the next index after a failure.\n\n```toml\n[[tool.uv.index]]\nname = \"my-index\"\nurl = \"https:///simple\"\nignore-error-codes = [401, 403]\n```", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "default": null, "items": { "$ref": "#/definitions/StatusCode" @@ -1082,9 +942,7 @@ ] } }, - "required": [ - "url" - ] + "required": ["url"] }, "IndexCacheControl": { "description": "Cache control configuration for an index.", @@ -1092,17 +950,11 @@ "properties": { "api": { "description": "Cache control header for Simple API requests.", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "files": { "description": "Cache control header for file downloads.", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] } } }, @@ -1230,15 +1082,10 @@ "$ref": "#/definitions/GroupName" }, "path": { - "type": [ - "string", - "null" - ] + "type": ["string", "null"] } }, - "required": [ - "name" - ] + "required": ["name"] }, "PipOptions": { "description": "Settings that are specific to the `uv pip` command-line interface.\n\nThese values will be ignored when running commands outside the `uv pip` namespace (e.g.,\n`uv lock`, `uvx`).", @@ -1246,17 +1093,11 @@ "properties": { "all-extras": { "description": "Include all optional dependencies.\n\nOnly applies to `pyproject.toml`, `setup.py`, and `setup.cfg` sources.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "allow-empty-requirements": { "description": "Allow `uv pip sync` with empty requirements, which will clear the environment of all\npackages.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "annotation-style": { "description": "The style of the annotation comments included in the output file, used to indicate the\nsource of each package.", @@ -1271,17 +1112,11 @@ }, "break-system-packages": { "description": "Allow uv to modify an `EXTERNALLY-MANAGED` Python installation.\n\nWARNING: `--break-system-packages` is intended for use in continuous integration (CI)\nenvironments, when installing into Python installations that are managed by an external\npackage manager, like `apt`. It should be used with caution, as such Python installations\nexplicitly recommend against modifications by other package managers (like uv or pip).", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "compile-bytecode": { "description": "Compile Python files to bytecode after installation.\n\nBy default, uv does not compile Python (`.py`) files to bytecode (`__pycache__/*.pyc`);\ninstead, compilation is performed lazily the first time a module is imported. For use-cases\nin which start time is critical, such as CLI applications and Docker containers, this option\ncan be enabled to trade longer installation times for faster start times.\n\nWhen enabled, uv will process the entire site-packages directory (including packages that\nare not being modified by the current operation) for consistency. Like pip, it will also\nignore errors.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "config-settings": { "description": "Settings to pass to the [PEP 517](https://peps.python.org/pep-0517/) build backend,\nspecified as `KEY=VALUE` pairs.", @@ -1307,55 +1142,34 @@ }, "custom-compile-command": { "description": "The header comment to include at the top of the output file generated by `uv pip compile`.\n\nUsed to reflect custom build scripts and commands that wrap `uv pip compile`.", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "dependency-metadata": { "description": "Pre-defined static metadata for dependencies of the project (direct or transitive). When\nprovided, enables the resolver to use the specified metadata instead of querying the\nregistry or building the relevant package from source.\n\nMetadata should be provided in adherence with the [Metadata 2.3](https://packaging.python.org/en/latest/specifications/core-metadata/)\nstandard, though only the following fields are respected:\n\n- `name`: The name of the package.\n- (Optional) `version`: The version of the package. If omitted, the metadata will be applied\n to all versions of the package.\n- (Optional) `requires-dist`: The dependencies of the package (e.g., `werkzeug>=0.14`).\n- (Optional) `requires-python`: The Python version required by the package (e.g., `>=3.10`).\n- (Optional) `provides-extra`: The extras provided by the package.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/StaticMetadata" } }, "emit-build-options": { "description": "Include `--no-binary` and `--only-binary` entries in the output file generated by `uv pip compile`.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "emit-find-links": { "description": "Include `--find-links` entries in the output file generated by `uv pip compile`.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "emit-index-annotation": { "description": "Include comment annotations indicating the index used to resolve each package (e.g.,\n`# from https://pypi.org/simple`).", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "emit-index-url": { "description": "Include `--index-url` and `--extra-index-url` entries in the output file generated by `uv pip compile`.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "emit-marker-expression": { "description": "Whether to emit a marker string indicating the conditions under which the set of pinned\ndependencies is valid.\n\nThe pinned dependencies may be valid even when the marker expression is\nfalse, but when the expression is true, the requirements are known to\nbe correct.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "exclude-newer": { "description": "Limit candidate packages to those that were uploaded prior to a given point in time.\n\nAccepts a superset of [RFC 3339](https://www.rfc-editor.org/rfc/rfc3339.html) (e.g.,\n`2006-12-02T02:07:43Z`). A full timestamp is required to ensure that the resolver will\nbehave consistently across timezones.", @@ -1381,10 +1195,7 @@ }, "extra": { "description": "Include optional dependencies from the specified extra; may be provided more than once.\n\nOnly applies to `pyproject.toml`, `setup.py`, and `setup.cfg` sources.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/ExtraName" } @@ -1413,20 +1224,14 @@ }, "extra-index-url": { "description": "Extra URLs of package indexes to use, in addition to `--index-url`.\n\nAccepts either a repository compliant with [PEP 503](https://peps.python.org/pep-0503/)\n(the simple repository API), or a local directory laid out in the same format.\n\nAll indexes provided via this flag take priority over the index specified by\n[`index_url`](#index-url). When multiple indexes are provided, earlier values take priority.\n\nTo control uv's resolution strategy when multiple indexes are present, see\n[`index_strategy`](#index-strategy).", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/IndexUrl" } }, "find-links": { "description": "Locations to search for candidate distributions, in addition to those found in the registry\nindexes.\n\nIf a path, the target must be a directory that contains packages as wheel files (`.whl`) or\nsource distributions (e.g., `.tar.gz` or `.zip`) at the top level.\n\nIf a URL, the page must contain a flat list of links to package files adhering to the\nformats described above.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/IndexUrl" } @@ -1444,17 +1249,11 @@ }, "generate-hashes": { "description": "Include distribution hashes in the output file.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "group": { "description": "Include the following dependency groups.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/PipGroupName" } @@ -1505,130 +1304,82 @@ }, "no-annotate": { "description": "Exclude comment annotations indicating the source of each package from the output file\ngenerated by `uv pip compile`.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-binary": { "description": "Don't install pre-built wheels.\n\nThe given packages will be built and installed from source. The resolver will still use\npre-built wheels to extract package metadata, if available.\n\nMultiple packages may be provided. Disable binaries for all packages with `:all:`.\nClear previously specified packages with `:none:`.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/PackageNameSpecifier" } }, "no-build": { "description": "Don't build source distributions.\n\nWhen enabled, resolving will not run arbitrary Python code. The cached wheels of\nalready-built source distributions will be reused, but operations that require building\ndistributions will exit with an error.\n\nAlias for `--only-binary :all:`.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-build-isolation": { "description": "Disable isolation when building source distributions.\n\nAssumes that build dependencies specified by [PEP 518](https://peps.python.org/pep-0518/)\nare already installed.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-build-isolation-package": { "description": "Disable isolation when building source distributions for a specific package.\n\nAssumes that the packages' build dependencies specified by [PEP 518](https://peps.python.org/pep-0518/)\nare already installed.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/PackageName" } }, "no-deps": { "description": "Ignore package dependencies, instead only add those packages explicitly listed\non the command line to the resulting requirements file.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-emit-package": { "description": "Specify a package to omit from the output resolution. Its dependencies will still be\nincluded in the resolution. Equivalent to pip-compile's `--unsafe-package` option.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/PackageName" } }, "no-extra": { "description": "Exclude the specified optional dependencies if `all-extras` is supplied.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/ExtraName" } }, "no-header": { "description": "Exclude the comment header at the top of output file generated by `uv pip compile`.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-index": { "description": "Ignore all registry indexes (e.g., PyPI), instead relying on direct URL dependencies and\nthose provided via `--find-links`.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-sources": { "description": "Ignore the `tool.uv.sources` table when resolving dependencies. Used to lock against the\nstandards-compliant, publishable package metadata, as opposed to using any local or Git\nsources.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-strip-extras": { "description": "Include extras in the output file.\n\nBy default, uv strips extras, as any packages pulled in by the extras are already included\nas dependencies in the output file directly. Further, output files generated with\n`--no-strip-extras` cannot be used as constraints files in `install` and `sync` invocations.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "no-strip-markers": { "description": "Include environment markers in the output file generated by `uv pip compile`.\n\nBy default, uv strips environment markers, as the resolution generated by `compile` is\nonly guaranteed to be correct for the target environment.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "only-binary": { "description": "Only use pre-built wheels; don't build source distributions.\n\nWhen enabled, resolving will not run code from the given packages. The cached wheels of already-built\nsource distributions will be reused, but operations that require building distributions will\nexit with an error.\n\nMultiple packages may be provided. Disable binaries for all packages with `:all:`.\nClear previously specified packages with `:none:`.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/PackageNameSpecifier" } }, "output-file": { "description": "Write the requirements generated by `uv pip compile` to the given `requirements.txt` file.\n\nIf the file already exists, the existing versions will be preferred when resolving\ndependencies, unless `--upgrade` is also specified.", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "prefix": { "description": "Install packages into `lib`, `bin`, and other top-level folders under the specified\ndirectory, as if a virtual environment were present at that location.\n\nIn general, prefer the use of `--python` to install into an alternate environment, as\nscripts and other artifacts installed via `--prefix` will reference the installing\ninterpreter, rather than any interpreter added to the `--prefix` directory, rendering them\nnon-portable.", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "prerelease": { "description": "The strategy to use when considering pre-release versions.\n\nBy default, uv will accept pre-releases for packages that _only_ publish pre-releases,\nalong with first-party requirements that contain an explicit pre-release marker in the\ndeclared specifiers (`if-necessary-or-explicit`).", @@ -1643,10 +1394,7 @@ }, "python": { "description": "The Python interpreter into which packages should be installed.\n\nBy default, uv installs into the virtual environment in the current working directory or\nany parent directory. The `--python` option allows you to specify a different interpreter,\nwhich is intended for use in continuous integration (CI) environments or other automated\nworkflows.\n\nSupported formats:\n- `3.10` looks for an installed Python 3.10 in the registry on Windows (see\n `py --list-paths`), or `python3.10` on Linux and macOS.\n- `python3.10` or `python.exe` looks for a binary with the given name in `PATH`.\n- `/home/ferris/.local/bin/python3.10` uses the exact Python at the given path.", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "python-platform": { "description": "The platform for which requirements should be resolved.\n\nRepresented as a \"target triple\", a string that describes the target platform in terms of\nits CPU, vendor, and operating system name, like `x86_64-unknown-linux-gnu` or\n`aarch64-apple-darwin`.", @@ -1672,27 +1420,18 @@ }, "reinstall": { "description": "Reinstall all packages, regardless of whether they're already installed. Implies `refresh`.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "reinstall-package": { "description": "Reinstall a specific package, regardless of whether it's already installed. Implies\n`refresh-package`.", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/PackageName" } }, "require-hashes": { "description": "Require a matching hash for each requirement.\n\nHash-checking mode is all or nothing. If enabled, _all_ requirements must be provided\nwith a corresponding hash or set of hashes. Additionally, if enabled, _all_ requirements\nmust either be pinned to exact versions (e.g., `==1.0.0`), or be specified via direct URL.\n\nHash-checking mode introduces a number of additional constraints:\n\n- Git dependencies are not supported.\n- Editable installations are not supported.\n- Local dependencies are not supported, unless they point to a specific wheel (`.whl`) or\n source archive (`.zip`, `.tar.gz`), as opposed to a directory.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "resolution": { "description": "The strategy to use when selecting between the different compatible versions for a given\npackage requirement.\n\nBy default, uv will use the latest compatible version of each package (`highest`).", @@ -1707,24 +1446,15 @@ }, "strict": { "description": "Validate the Python environment, to detect packages with missing dependencies and other\nissues.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "system": { "description": "Install packages into the system Python environment.\n\nBy default, uv installs into the virtual environment in the current working directory or\nany parent directory. The `--system` option instructs uv to instead use the first Python\nfound in the system `PATH`.\n\nWARNING: `--system` is intended for use in continuous integration (CI) environments and\nshould be used with caution, as it can modify the system Python installation.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "target": { "description": "Install packages into the specified directory, rather than into the virtual or system Python\nenvironment. The packages will be installed at the top-level of the directory.", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "torch-backend": { "description": "The backend to use when fetching packages in the PyTorch ecosystem.\n\nWhen set, uv will ignore the configured index URLs for packages in the PyTorch ecosystem,\nand will instead use the defined backend.\n\nFor example, when set to `cpu`, uv will use the CPU-only PyTorch index; when set to `cu126`,\nuv will use the PyTorch index for CUDA 12.6.\n\nThe `auto` mode will attempt to detect the appropriate PyTorch index based on the currently\ninstalled CUDA drivers.\n\nThis setting is only respected by `uv pip` commands.\n\nThis option is in preview and may change in any future release.", @@ -1739,34 +1469,22 @@ }, "universal": { "description": "Perform a universal resolution, attempting to generate a single `requirements.txt` output\nfile that is compatible with all operating systems, architectures, and Python\nimplementations.\n\nIn universal mode, the current Python version (or user-provided `--python-version`) will be\ntreated as a lower bound. For example, `--universal --python-version 3.7` would produce a\nuniversal resolution for Python 3.7 and later.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "upgrade": { "description": "Allow package upgrades, ignoring pinned versions in any existing output file.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "upgrade-package": { "description": "Allow upgrades for a specific package, ignoring pinned versions in any existing output\nfile.\n\nAccepts both standalone package names (`ruff`) and version specifiers (`ruff<0.5.0`).", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/Requirement" } }, "verify-hashes": { "description": "Validate any hashes provided in the requirements file.\n\nUnlike `--require-hashes`, `--verify-hashes` does not require that all requirements have\nhashes; instead, it will limit itself to verifying the hashes of those requirements that do\ninclude them.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] } }, "additionalProperties": false @@ -1942,10 +1660,7 @@ "type": "object", "properties": { "branch": { - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "extra": { "anyOf": [ @@ -1977,19 +1692,13 @@ }, "lfs": { "description": "Whether to use Git LFS when cloning the repository.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "marker": { "$ref": "#/definitions/MarkerTree" }, "rev": { - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "subdirectory": { "description": "The path to the directory with the `pyproject.toml`, if it's not in the archive root.", @@ -2003,16 +1712,11 @@ ] }, "tag": { - "type": [ - "string", - "null" - ] + "type": ["string", "null"] } }, "additionalProperties": false, - "required": [ - "git" - ] + "required": ["git"] }, { "description": "A remote `http://` or `https://` URL, either a wheel (`.whl`) or a source distribution\n(`.zip`, `.tar.gz`).\n\nExample:\n```toml\nflask = { url = \"https://files.pythonhosted.org/packages/61/80/ffe1da13ad9300f87c93af113edd0638c75138c42a0994becfacac078c06/flask-3.0.3-py3-none-any.whl\" }\n```", @@ -2057,9 +1761,7 @@ } }, "additionalProperties": false, - "required": [ - "url" - ] + "required": ["url"] }, { "description": "The path to a dependency, either a wheel (a `.whl` file), source distribution (a `.zip` or\n`.tar.gz` file), or source tree (i.e., a directory containing a `pyproject.toml` or\n`setup.py` file in the root).", @@ -2067,10 +1769,7 @@ "properties": { "editable": { "description": "`false` by default.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "extra": { "anyOf": [ @@ -2097,19 +1796,14 @@ }, "package": { "description": "Whether to treat the dependency as a buildable Python package (`true`) or as a virtual\npackage (`false`). If `false`, the package will not be built or installed, but its\ndependencies will be included in the virtual environment.\n\nWhen omitted, the package status is inferred based on the presence of a `[build-system]`\nin the project's `pyproject.toml`.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "path": { "$ref": "#/definitions/PortablePathBuf" } }, "additionalProperties": false, - "required": [ - "path" - ] + "required": ["path"] }, { "description": "A dependency pinned to a specific index, e.g., `torch` after setting `torch` to `https://download.pytorch.org/whl/cu118`.", @@ -2143,9 +1837,7 @@ } }, "additionalProperties": false, - "required": [ - "index" - ] + "required": ["index"] }, { "description": "A dependency on another package in the workspace.", @@ -2153,10 +1845,7 @@ "properties": { "editable": { "description": "Whether the package should be installed as editable. Defaults to `true`.", - "type": [ - "boolean", - "null" - ] + "type": ["boolean", "null"] }, "extra": { "anyOf": [ @@ -2187,9 +1876,7 @@ } }, "additionalProperties": false, - "required": [ - "workspace" - ] + "required": ["workspace"] } ] }, @@ -2229,23 +1916,15 @@ }, "requires-python": { "description": "PEP 508-style Python requirement, e.g., `>=3.10`", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] }, "version": { "description": "PEP 440-style package version, e.g., `1.2.3`", - "type": [ - "string", - "null" - ] + "type": ["string", "null"] } }, "additionalProperties": false, - "required": [ - "name" - ] + "required": ["name"] }, "StatusCode": { "description": "HTTP status code (100-599)", @@ -2500,20 +2179,14 @@ "properties": { "exclude": { "description": "Packages to exclude as workspace members. If a package matches both `members` and\n`exclude`, it will be excluded.\n\nSupports both globs and explicit paths.\n\nFor more information on the glob syntax, refer to the [`glob` documentation](https://docs.rs/glob/latest/glob/struct.Pattern.html).", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/SerdePattern" } }, "members": { "description": "Packages to include as workspace members.\n\nSupports both globs and explicit paths.\n\nFor more information on the glob syntax, refer to the [`glob` documentation](https://docs.rs/glob/latest/glob/struct.Pattern.html).", - "type": [ - "array", - "null" - ], + "type": ["array", "null"], "items": { "$ref": "#/definitions/SerdePattern" } @@ -2764,10 +2437,7 @@ "oneOf": [ { "type": "string", - "enum": [ - "always", - "never" - ] + "enum": ["always", "never"] }, { "description": "Attempt trusted publishing when we're in a supported environment, continue if that fails.\n\nSupported environments include GitHub Actions and GitLab CI/CD.", @@ -2781,42 +2451,27 @@ "type": "object", "properties": { "data": { - "type": [ - "string", - "null" - ], + "type": ["string", "null"], "default": null }, "headers": { - "type": [ - "string", - "null" - ], + "type": ["string", "null"], "default": null }, "platlib": { - "type": [ - "string", - "null" - ], + "type": ["string", "null"], "default": null }, "purelib": { - "type": [ - "string", - "null" - ], + "type": ["string", "null"], "default": null }, "scripts": { - "type": [ - "string", - "null" - ], + "type": ["string", "null"], "default": null } }, "additionalProperties": false } } -} \ No newline at end of file +}