Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Add an explanatory comment for omitting "t"
Since the `${var%pattern}` syntax may not be immediately obvious.
  • Loading branch information
EliahKagan committed Jun 7, 2025
commit b45ae86aaaab25ccd07ee183382a0e78a92f65a2
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:

- name: Check types with mypy
run: |
mypy --python-version="${PYTHON_VERSION%t}"
mypy --python-version="${PYTHON_VERSION%t}" # Version only, with no "t" for free-threaded.
env:
MYPY_FORCE_COLOR: "1"
TERM: "xterm-256color" # For color: https://github.com/python/mypy/issues/13817
Expand Down
Loading