Skip to content

Commit ab491c4

Browse files
committed
github workflow: Update
1 parent 111c76f commit ab491c4

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/testing.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,20 @@ jobs:
1919
- uses: actions/checkout@v4
2020

2121
- name: Install uv
22-
uses: astral-sh/setup-uv@v5
22+
uses: astral-sh/setup-uv@v7
2323
with:
2424
enable-cache: true
2525
cache-dependency-glob: "**/pyproject.toml"
26+
python-version: "3.13" # until numba supports something newer
27+
28+
- name: Install Linux libraries
29+
shell: pwsh
30+
if: ${{ matrix.os == "ubuntu" }}
31+
run: apt install -y libegl-dev
2632

2733
- name: Set up Python
2834
shell: pwsh
29-
run: uv sync
35+
run: uv sync --extra gui
3036

3137
- name: Test with pytest
3238
shell: pwsh

0 commit comments

Comments
 (0)