Skip to content

Commit b6280b2

Browse files
jlebondustymabe
authored andcommitted
workflows/add-overrides: install python3-dnf
F41 moved on to dnf5, which doesn't pull in Python bindings anymore. But anyway, the Python API in libdnf5 is different and we'd need to migrate `overrides.py`. For now at least to unbreak things, just re-install back python3-dnf. See also: #3254
1 parent c87644f commit b6280b2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/add-override.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ jobs:
4040
container: quay.io/fedora/fedora:latest
4141
steps:
4242
- name: Install dependencies
43-
run: dnf install -y git jq python3-bodhi-client python3-pyyaml
43+
# XXX: Note here we're installing python3-dnf, which pulls in libdnf,
44+
# which is the old one. We should migrate to libdnf5 to match dnf5.
45+
# https://github.com/coreos/fedora-coreos-config/issues/3254
46+
run: dnf install -y git jq python3-bodhi-client python3-pyyaml python3-dnf
4447
- name: Check out repository
4548
uses: actions/checkout@v3
4649
with:

0 commit comments

Comments
 (0)