File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 2626 - name : Set up Python ${{ matrix.python-version }}
2727 run : uv python install ${{ matrix.python-version }}
2828
29+ - name : Install system dependencies (Ubuntu)
30+ if : matrix.os == 'ubuntu-latest'
31+ run : |
32+ sudo apt-get update
33+ sudo apt-get install -y pkg-config libglib2.0-dev libzstd-dev
34+
35+ - name : Install system dependencies (macOS)
36+ if : matrix.os == 'macos-latest' || matrix.os == 'macos-14'
37+ run : |
38+ brew install glib pkg-config zstd
39+
2940 - name : Build and test with uv
3041 run : |
3142 uv venv --python ${{ matrix.python-version }}
Original file line number Diff line number Diff line change 22requires = [
33 " scikit-build-core>=0.10" ,
44 " pybind11" ,
5- " cmake>=3.15" ,
6- " ninja; platform_system!='Windows'" ,
75 " setuptools_scm[toml]>=6.2"
86]
97build-backend = " scikit_build_core.build"
You can’t perform that action at this time.
0 commit comments