From: Michael Orlitzky Date: Mon, 22 Jun 2026 03:56:04 +0000 (-0400) Subject: sage.sh: re-enable brial by default until I can fix it X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=ce217870050a0bfde2eef4dad59d51683711fae7;p=shell.d.git sage.sh: re-enable brial by default until I can fix it --- diff --git a/sage.sh b/sage.sh index 28797e7..302993a 100644 --- a/sage.sh +++ b/sage.sh @@ -23,8 +23,8 @@ alias sage="python -m sage.cli" # # https://github.com/mesonbuild/meson-python/issues/820 # -# Re-enable eclib explicitly because I think it kills too many things -# to be optional without a huge refactoring. +# Re-enable brial and eclib because they're waiting for me to add +# features and "needs" tags for their tests to pass. sage_meson_setup() { meson setup \ --python.bytecompile=-1 \ @@ -33,7 +33,8 @@ sage_meson_setup() { --wrap-mode=nodownload \ -Dbuild-docs=false \ -Dauto_features=disabled \ - -Declib=enabled \ + -Dbrial=enabled \ + -Declib=enabled \ "${@}" }