Skip to content

Commit 27eb127

Browse files
authored
More fixes
1 parent 22ad0c8 commit 27eb127

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
# Install dnf5
4646
if [ "${{ matrix.container }}" = "fedora:40" ] && ! rpm -q dnf5 >/dev/null; then
47-
rpm-ostree install dnf5 dnf5-plugins
47+
dnf install dnf5 -y
4848
fi
4949
5050
SYSTEM=$(build/bin/sage-guess-package-system)

src/sage/rings/polynomial/pbori/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
brial = cc.find_library('brial', required: false, disabler: true)
22
# Cannot be found via pkg-config
3-
brial_groebner = cc.find_library('brial_groebner')
3+
brial_groebner = cc.find_library('brial_groebner', required: false, disabler: true)
44

55
py.install_sources(
66
'PyPolyBoRi.py',

0 commit comments

Comments
 (0)