From 34b07ab8dc121e7037fb17b31b9c9bb60239d0cb Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Tue, 4 Nov 2025 20:59:44 -0300 Subject: [PATCH] bugfix: cambio script de build para ejecutar git-flow tag --- bitbucket-pipelines.yml | 10 ++++++++-- pyproject.toml | 4 ++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 0106802..e654684 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -5,14 +5,20 @@ pipelines: 'dev': - step: name: "Tag dev" + caches: + - pip script: - cd $BITBUCKET_CLONE_DIR + - pip install --upgrade pip - pip install . - - ./src/git_flow/main.py tag $BEARER + - git-flow tag $BEARER 'main': - step: name: "Tag main" + caches: + - pip script: - cd $BITBUCKET_CLONE_DIR + - pip install --upgrade pip - pip install . - - ./src/git_flow/main.py tag $BEARER + - git-flow tag $BEARER diff --git a/pyproject.toml b/pyproject.toml index e40495d..bdb35a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] -requires = ["hatchling >= 1.26"] -build-backend = "hatchling.build" +requires = ["setuptools >= 61.0"] +build-backend = "setuptools.build_meta" [project] name = "git-flow"