Skip to content

Commit 5537499

Browse files
committed
Revert "Deliberate error"
This reverts commit 0778ee8.
1 parent c088cc2 commit 5537499

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ jobs:
5353
shell: bash
5454
run: |
5555
actual=$(uv run python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
56-
if [[ "$actual" != "${{ 3.13 }}" ]]; then
56+
if [[ "$actual" != "${{ matrix.python }}" ]]; then
5757
echo "Python version in use by uv ($actual) does not match intended version (${{ matrix.python }})"
5858
exit 1
5959
fi
6060
actual=$(python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
61-
if [[ "$actual" != "${{ 3.13 }}" ]]; then
61+
if [[ "$actual" != "${{ matrix.python }}" ]]; then
6262
echo "Python version on PATH ($actual) does not match intended version (${{ matrix.python }})"
6363
exit 1
6464
fi

0 commit comments

Comments
 (0)