Skip to content

Commit c9ceb45

Browse files
committed
Remove version sanity check
1 parent 7bfe1d7 commit c9ceb45

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

.github/workflows/ci.yml

+1-14
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,7 @@ jobs:
3131
with:
3232
python-version: ${{ matrix.python }}
3333
- run: uv tool install poethepoet
34-
- run: uv sync --group=dsl --group=encryption --group=trio-async --python ${{ matrix.python }}
35-
- name: Check python version
36-
shell: bash
37-
run: |
38-
actual=$(uv run python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
39-
if [[ "$actual" != "${{ matrix.python }}" ]]; then
40-
echo "Python version in use by uv ($actual) does not match intended version (${{ matrix.python }})"
41-
exit 1
42-
fi
43-
actual=$(python -c "import sys; print('.'.join(map(str, sys.version_info[:2])))")
44-
if [[ "$actual" != "${{ matrix.python }}" ]]; then
45-
echo "Python version on $PATH ($actual) does not match intended version (${{ matrix.python }})"
46-
exit 1
47-
fi
34+
- run: uv sync --group=dsl --group=encryption --group=trio-async
4835
- run: poe lint
4936
- run: mkdir junit-xml
5037
- run: poe test -s --junit-xml=junit-xml/${{ matrix.python }}--${{ matrix.os }}.xml

0 commit comments

Comments
 (0)