File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed
Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 2424 cache-dependency-glob : " uv.lock"
2525 cache-local-path : ${{ env.UV_CACHE_DIR }}
2626
27+ - name : Install additional OS dependencies
28+ run : |
29+ sudo apt-get update
30+ sudo apt-get -y install \
31+ pkg-config \
32+ liblzma-dev
33+
2734 - name : 🏗 Install the project
2835 run : uv sync --locked --dev
2936
5764 cache-local-path : ${{ env.UV_CACHE_DIR }}
5865 python-version : ${{ matrix.python-version }}
5966
67+ - name : Install additional OS dependencies
68+ run : |
69+ sudo apt-get update
70+ sudo apt-get -y install \
71+ pkg-config \
72+ liblzma-dev
73+
6074 - name : 🏗 Install the project
6175 run : uv sync --locked --dev
6276
Original file line number Diff line number Diff line change 2323 - " 3.13"
2424 linux-compatibility :
2525 - " manylinux_2_34"
26- - " musllinux_1_2"
2726 steps :
2827 - name : ⤵️ Check out code from GitHub
2928 uses : actions/checkout@v4.2.2
3231 with :
3332 enable-cache : true
3433 python-version : ${{ matrix.python-version }}
34+ - name : Install additional OS dependencies
35+ run : |
36+ sudo apt-get update
37+ sudo apt-get -y install \
38+ pkg-config \
39+ liblzma-dev
3540 - name : 🏗 Set package version
3641 run : |
3742 sed -i "s/^version = \".*\"/version = \"${{ github.event.release.tag_name }}\"/" pyproject.toml
You can’t perform that action at this time.
0 commit comments