Skip to content

Commit f586cde

Browse files
committed
Default SAGE_ECMBIN to "ecm".
Having `None` as default breaks the feature ecm. This restores the previous default, which corresponds to the upstream name for the binary. See #37011 (comment)
1 parent b693ea9 commit f586cde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def var(key: str, *fallbacks: Optional[str], force: bool = False) -> Optional[st
220220
MAXIMA_FAS = var("MAXIMA_FAS")
221221
KENZO_FAS = var("KENZO_FAS")
222222
SAGE_NAUTY_BINS_PREFIX = var("SAGE_NAUTY_BINS_PREFIX", "")
223-
SAGE_ECMBIN = var("SAGE_ECMBIN")
223+
SAGE_ECMBIN = var("SAGE_ECMBIN", "ecm")
224224
RUBIKS_BINS_PREFIX = var("RUBIKS_BINS_PREFIX", "")
225225
FOURTITWO_HILBERT = var("FOURTITWO_HILBERT")
226226
FOURTITWO_MARKOV = var("FOURTITWO_MARKOV")

0 commit comments

Comments
 (0)