We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22ad0c8 commit 27eb127Copy full SHA for 27eb127
.github/workflows/ci.yml
@@ -44,7 +44,7 @@ jobs:
44
run: |
45
# Install dnf5
46
if [ "${{ matrix.container }}" = "fedora:40" ] && ! rpm -q dnf5 >/dev/null; then
47
- rpm-ostree install dnf5 dnf5-plugins
+ dnf install dnf5 -y
48
fi
49
50
SYSTEM=$(build/bin/sage-guess-package-system)
src/sage/rings/polynomial/pbori/meson.build
@@ -1,6 +1,6 @@
1
brial = cc.find_library('brial', required: false, disabler: true)
2
# Cannot be found via pkg-config
3
-brial_groebner = cc.find_library('brial_groebner')
+brial_groebner = cc.find_library('brial_groebner', required: false, disabler: true)
4
5
py.install_sources(
6
'PyPolyBoRi.py',
0 commit comments