Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7]
python-version: [3.8]

Copilot AI Feb 23, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider quoting the matrix Python version (e.g., '3.8') so YAML always treats it as a string. This prevents subtle parsing issues if/when the workflow is bumped to 3.10+ (which can be interpreted as 3.1 in some YAML contexts).

Suggested change
python-version: [3.8]
python-version: ['3.8']

Copilot uses AI. Check for mistakes.

steps:
- name: Checkout repository
Expand Down