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)')}" )