From 5b3ff5b50e0af7bcf6aa1667b0b1094214c88bef Mon Sep 17 00:00:00 2001 From: Dmitry Date: Fri, 21 Nov 2025 00:55:20 +0300 Subject: [PATCH] python --- .forgejo/workflows/agent-development.yml | 11 ++++------- .forgejo/workflows/agent-planning.yml | 8 +++++--- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.forgejo/workflows/agent-development.yml b/.forgejo/workflows/agent-development.yml index 68a5589..004cd1a 100644 --- a/.forgejo/workflows/agent-development.yml +++ b/.forgejo/workflows/agent-development.yml @@ -23,15 +23,12 @@ jobs: with: fetch-depth: 0 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.11' - - - name: Install jq + - name: Set up Python and dependencies run: | apt-get update -qq - apt-get install -y -qq jq + apt-get install -y -qq python3 python3-pip python3-venv jq + python3 --version + pip3 --version - name: Set up Flutter (for web_v2) if: inputs.component == 'web_v2' diff --git a/.forgejo/workflows/agent-planning.yml b/.forgejo/workflows/agent-planning.yml index 2f68a13..913ae49 100644 --- a/.forgejo/workflows/agent-planning.yml +++ b/.forgejo/workflows/agent-planning.yml @@ -24,9 +24,11 @@ jobs: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.11' + run: | + apt-get update -qq + apt-get install -y -qq python3 python3-pip python3-venv + python3 --version + pip3 --version - name: Install Cursor CLI run: |