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:
AndyMik90
2025-12-15 21:39:47 +01:00
parent 3fc1592ce6
commit 43a338ca11
3 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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
+2 -3
View File
@@ -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)')}"
)