Skip to content

Commit e026973

Browse files
author
Release Manager
committed
gh-37701: 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) ### 📝 Checklist - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. URL: #37701 Reported by: Gonzalo Tornaría Reviewer(s): Dima Pasechnik
2 parents 9b0a40d + f586cde commit e026973

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)