We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30aba47 commit b0de2d5Copy full SHA for b0de2d5
1 file changed
.github/workflows/install.yml
@@ -53,7 +53,7 @@ jobs:
53
54
case "$DIST_ID" in
55
arch)
56
- pacman --noconfirm -Sy "${DEPS_COMMON[@]}" systemd-libs python-pip ctags gnupg
+ pacman --noconfirm -Sy -u "${DEPS_COMMON[@]}" systemd-libs python-pip ctags gnupg
57
;;
58
centos)
59
dnf config-manager --set-enabled crb
@@ -72,15 +72,14 @@ jobs:
72
exit 1
73
esac
74
75
- - name: Install uv
76
- uses: astral-sh/setup-uv@v5
+ python3 -m pip install --break-system-packages build
77
78
- name: Install & test
79
shell: bash
80
run: |
81
set -x
82
- uv build
83
- uv sync --no-editable
+ python3 -m build
+ python3 -m pip install .
84
# Avoid importing the systemd module from the git repository
85
cd /
86
python3 -c 'from systemd import journal; print(journal.__version__)'
0 commit comments