From 43a338ca11380ec517e80c861c4ccd242c293f6b Mon Sep 17 00:00:00 2001 From: AndyMik90 Date: Mon, 15 Dec 2025 21:39:47 +0100 Subject: [PATCH] chore: Update Python versions in CI workflows - Changed Python version matrix from ['3.11', '3.12'] to ['3.12', '3.13'] in both ci.yml and test-on-tag.yml. - Refactored print statement in requirements.py for improved readability by using a variable for the edit hint. --- .github/workflows/ci.yml | 2 +- .github/workflows/test-on-tag.yml | 2 +- auto-claude/spec/requirements.py | 5 ++--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f3965ac..d3c1f8f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.11', '3.12'] + python-version: ['3.12', '3.13'] steps: - name: Checkout diff --git a/.github/workflows/test-on-tag.yml b/.github/workflows/test-on-tag.yml index 5b26729b..078bd561 100644 --- a/.github/workflows/test-on-tag.yml +++ b/.github/workflows/test-on-tag.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.11', '3.12'] + python-version: ['3.12', '3.13'] steps: - name: Checkout diff --git a/auto-claude/spec/requirements.py b/auto-claude/spec/requirements.py index 97c96d4a..e6eac70d 100644 --- a/auto-claude/spec/requirements.py +++ b/auto-claude/spec/requirements.py @@ -67,9 +67,8 @@ def gather_requirements_interactively(ui_module) -> dict: # Task description - multi-line support with editor option print(f" {ui_module.bold('1. What do you want to build or fix?')}") print(f" {ui_module.muted('(Describe the feature, bug fix, or change)')}") - print( - f" {ui_module.muted('Type "edit" to open in your editor, or enter text below')}" - ) + edit_hint = 'Type "edit" to open in your editor, or enter text below' + print(f" {ui_module.muted(edit_hint)}") print( f" {ui_module.muted('(Press Enter often for new lines, blank line = done)')}" )