Skip to content

Commit

Permalink
CI: Use regular pip install for Python 3.13 (not uv)
Browse files Browse the repository at this point in the history
  • Loading branch information
EwoutH committed Aug 22, 2024
1 parent 8b08a4a commit 33a9926
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,12 @@ jobs:
cache: 'pip'
- name: Install uv
run: pip install uv
- name: Install Mesa
# See https://github.com/astral-sh/uv/issues/1945
- name: Install Mesa with uv pip
run: uv pip install --system .[dev]
if: matrix.python-version != '3.13'
- name: Install Mesa with pip
run: pip install .[dev]
if: matrix.python-version == '3.13'
- name: Test with pytest
run: pytest --durations=10 --cov=mesa tests/ --cov-report=xml
- if: matrix.os == 'ubuntu'
Expand Down

0 comments on commit 33a9926

Please sign in to comment.