summaryrefslogtreecommitdiffstats
path: root/hatch_build.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-03-11 08:03:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-03-11 08:03:03 +0000
commitde139943d8272773b5f19ed824d687b0232b9ba3 (patch)
tree47e73755bffd41bdde2d59d76cc595f5a1fa75d4 /hatch_build.py
parentAdding upstream version 0.19.0~dev. (diff)
downloadgitlint-de139943d8272773b5f19ed824d687b0232b9ba3.tar.xz
gitlint-de139943d8272773b5f19ed824d687b0232b9ba3.zip
Adding upstream version 0.19.1.upstream/0.19.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'hatch_build.py')
-rw-r--r--hatch_build.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/hatch_build.py b/hatch_build.py
new file mode 100644
index 0000000..4be7a45
--- /dev/null
+++ b/hatch_build.py
@@ -0,0 +1,13 @@
+# hatch_build.py is executed by hatch at build-time and can contain custom build logic hooks
+import os
+from hatchling.metadata.plugin.interface import MetadataHookInterface
+
+
+class CustomMetadataHook(MetadataHookInterface):
+ """Custom metadata hook for hatch that ensures that gitlint and gitlint-core[trusted-deps] versions always match"""
+
+ def update(self, metadata: dict) -> None:
+ # Only enforce versioning matching outside of the 'dev' environment, this allows for re-use of the 'dev'
+ # environment between different git branches.
+ if os.environ.get("HATCH_ENV_ACTIVE", "not-dev") != "dev":
+ metadata["dependencies"] = [f"gitlint-core[trusted-deps]=={metadata['version']}"]