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.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)')}"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user