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 111c76f commit b7d905dCopy full SHA for b7d905d
.github/workflows/testing.yml
@@ -5,7 +5,7 @@
5
6
name: sdt-python test suite
7
8
-on: [push, pull_request]
+on: [push, pull_request, workflow_dispatch]
9
10
jobs:
11
build:
@@ -19,14 +19,20 @@ jobs:
19
- uses: actions/checkout@v4
20
21
- name: Install uv
22
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
23
with:
24
enable-cache: true
25
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
32
33
- name: Set up Python
34
shell: pwsh
- run: uv sync
35
+ run: uv sync --extra gui
36
37
- name: Test with pytest
38
0 commit comments