We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f54e078 commit e7b3794Copy full SHA for e7b3794
.github/workflows/ci.yml
@@ -34,12 +34,12 @@ jobs:
34
shell: bash
35
run: |
36
actual=$(uv run python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
37
- if [[ "$actual" != "${{ matrix.python }}" ]]; then
+ if [[ "$actual" != "${{ 3.12 }}" ]]; then
38
echo "Python version in use by uv ($actual) does not match intended version (${{ matrix.python }})"
39
exit 1
40
fi
41
actual=$(python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
42
43
echo "Python version on $PATH ($actual) does not match intended version (${{ matrix.python }})"
44
45
0 commit comments