From 3569e3a838a77b8ce272f8c41b3407695555ee34 Mon Sep 17 00:00:00 2001 From: David Mathias Mortensen Date: Thu, 4 Apr 2024 15:24:17 +0200 Subject: [PATCH] fix: Update decorators version and documentation --- README.md | 4 ++-- docs/modules/ROOT/pages/usage.adoc | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f90a22b..5bf8c6c 100644 --- a/README.md +++ b/README.md @@ -35,10 +35,10 @@ The plugin can be configured through the `pyproject.toml` file. Configure plugin ``` [tool.hatch.build.targets.wheel.hooks.decorators] -dependencies = ["reqstool-hatch-plugin == "] +dependencies = ["reqstool-python-hatch-plugin == "] path = ["src","tests"] ``` -It specifies that the reqstool-hatch-plugin is a dependency for the build process, and it should be of a specific version. +It specifies that the reqstool-python-hatch-plugin is a dependency for the build process, and it should be of a specific version. Further it defines the paths where the plugin should be applied. In this case, it specifies that the plugin should be applied to files in the src and tests directories. diff --git a/docs/modules/ROOT/pages/usage.adoc b/docs/modules/ROOT/pages/usage.adoc index 377896e..952294b 100644 --- a/docs/modules/ROOT/pages/usage.adoc +++ b/docs/modules/ROOT/pages/usage.adoc @@ -11,6 +11,6 @@ dependencies = ["reqstool-python-hatch-plugin == "] path = ["src","tests"] ``` -It specifies that the reqstool-hatch-plugin is a dependency for the build process, and it should be of a specific version. +It specifies that the reqstool-python-hatch-plugin is a dependency for the build process, and it should be of a specific version. Further it defines the paths where the plugin should be applied. In this case, it specifies that the plugin should be applied to files in the src and tests directories. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index fe204cb..d78f95d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ classifiers = [ requires-python = ">=3.10" dependencies = [ - "reqstool-python-decorators == 0.0.3", + "reqstool-python-decorators == 0.0.4", "ruamel.yaml==0.18.6", "hatchling>=1.20.0", ]