Skip to content

Commit 33a9926

Browse files
committed
CI: Use regular pip install for Python 3.13 (not uv)
1 parent 8b08a4a commit 33a9926

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build_lint.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,12 @@ jobs:
5353
cache: 'pip'
5454
- name: Install uv
5555
run: pip install uv
56-
- name: Install Mesa
57-
# See https://github.com/astral-sh/uv/issues/1945
56+
- name: Install Mesa with uv pip
5857
run: uv pip install --system .[dev]
58+
if: matrix.python-version != '3.13'
59+
- name: Install Mesa with pip
60+
run: pip install .[dev]
61+
if: matrix.python-version == '3.13'
5962
- name: Test with pytest
6063
run: pytest --durations=10 --cov=mesa tests/ --cov-report=xml
6164
- if: matrix.os == 'ubuntu'

0 commit comments

Comments
 (0)