From fefb3c664a49913b2948f48054360e6cb2c314d1 Mon Sep 17 00:00:00 2001 From: Valentin Gauthier Date: Thu, 4 Apr 2024 02:43:31 +0200 Subject: [PATCH] ci --- energyml-utils/pyproject.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/energyml-utils/pyproject.toml b/energyml-utils/pyproject.toml index dd5cd78..e525151 100644 --- a/energyml-utils/pyproject.toml +++ b/energyml-utils/pyproject.toml @@ -110,9 +110,13 @@ format-jinja = """ {%- if distance == 0 -%} {{ serialize_pep440(base, stage, revision) }} {%- elif revision is not none -%} - {{ serialize_pep440(base, stage, revision + 1, dev=distance, metadata=[commit]) }} + {{ serialize_pep440(base, stage, revision + 1, dev=distance, + # metadata=[commit] + ) }} {%- else -%} - {{ serialize_pep440(bump_version(base), stage, revision, dev=distance, metadata=[commit]) }} + {{ serialize_pep440(bump_version(base), stage, revision, dev=distance, + # metadata=[commit] + ) }} {%- endif -%} """