From 779fae229aaa16068185d0cd44c27bcd4ef0225c Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Fri, 19 May 2023 08:34:11 +0200 Subject: [PATCH] Document CLI not working with hatch.toml --- .pre-commit-config.yaml | 2 +- README.md | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d477ab6..7c6025c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,7 +9,7 @@ repos: - id: black - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: v0.0.267 + rev: v0.0.269 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] diff --git a/README.md b/README.md index 0206153..96a8edb 100644 --- a/README.md +++ b/README.md @@ -254,11 +254,14 @@ with our [example configuration][example-config], you will get the following out ![rich-cli output](rich-cli-out.svg) > **Warning** -> While the execution model is somewhat different from the [Hatch]-Python packaging pipeline, it uses the same configuration validator and text renderer, so the fidelity should be high. > -> It will **not** help you debug **packaging issues**, though. +> - The **CLI** currently doesn’t support `hatch.toml`. +> The **plugin** itself does. +> - While the execution model is somewhat different from the [Hatch]-Python packaging pipeline, it uses the same configuration validator and text renderer, so the fidelity should be high. > -> To verify your PyPI readme using the full packaging pipeline, check out my [*build-and-inspect-python-package*](https://github.com/hynek/build-and-inspect-python-package) GitHub Action. +> It will **not** help you debug **packaging issues**, though. +> +> To verify your PyPI readme using the full packaging pipeline, check out my [*build-and-inspect-python-package*](https://github.com/hynek/build-and-inspect-python-package) GitHub Action.