From b1aecf4f4f37451fc82ec67e6bcfdb6e49722185 Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Sun, 2 Nov 2025 12:46:53 -0300 Subject: [PATCH] bugfix: cambio la imagen de default a python:3.12 --- bitbucket-pipelines.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index b05ede8..4e00f4d 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -1,3 +1,5 @@ +image: python:3.12 + pipelines: branches: 'dev': @@ -5,12 +7,12 @@ pipelines: name: "Tag dev" script: - cd $BITBUCKET_CLONE_DIR - - python -m pip install -r requirements.txt + - pip install -r requirements.txt - ./git-flow tag $BEARER 'main': - step: name: "Tag main" script: - cd $BITBUCKET_CLONE_DIR - - python -m pip install -r requirements.txt + - pip install -r requirements.txt - ./git-flow tag $BEARER