File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -71,15 +71,15 @@ jobs:
71
71
run : |
72
72
./bootstrap
73
73
echo "::add-matcher::.github/workflows/configure-systempackage-problem-matcher.json"
74
- ./configure --enable -build-as-root --with-python=$CONDA_PREFIX/bin/python --prefix=$CONDA_PREFIX --enable-system-site-packages $(for pkg in $(./ sage -package list :standard: --has-file spkg-configure.m4 --has-file distros/conda.txt --exclude rpy2); do echo --with-system-$pkg=force; done)
74
+ pip install --no -build-isolation --no-deps -v -v -e ./pkgs/ sage-conf_conda
75
75
echo "::remove-matcher owner=configure-system-package-warning::"
76
76
echo "::remove-matcher owner=configure-system-package-error::"
77
77
78
78
- name : Build
79
79
shell : bash -l {0}
80
80
run : |
81
81
# Use --no-deps and pip check below to verify that all necessary dependencies are installed via conda.
82
- pip install --no-build-isolation --no-deps -v -v -e ./pkgs/sage-conf ./pkgs/sage- setup
82
+ pip install --no-build-isolation --no-deps -v -v -e ./pkgs/sage-setup
83
83
pip install --no-build-isolation --no-deps --config-settings editable_mode=compat -v -v -e ./src
84
84
env :
85
85
SAGE_NUM_THREADS : 2
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def run(self):
29
29
'See https://doc.sagemath.org/html/en/installation/conda.html on how to get started.' )
30
30
31
31
cmd = f"cd { SAGE_ROOT } && ./configure --enable-build-as-root --with-system-python3=force --disable-notebook --disable-sagelib --disable-sage_conf --disable-doc"
32
- cmd += ' --with-python=$CONDA_PREFIX/bin/python --prefix="$CONDA_PREFIX"'
32
+ cmd += ' --with-python=$CONDA_PREFIX/bin/python --prefix="$CONDA_PREFIX" --enable-system-site-packages '
33
33
cmd += ' $(for pkg in $(PATH="build/bin:$PATH" build/bin/sage-package list :standard: --exclude rpy2 --has-file spkg-configure.m4 --has-file distros/conda.txt --exclude-dependencies); do echo --with-system-$pkg=force; done)'
34
34
print (f"Running { cmd } " )
35
35
sys .stdout .flush ()
You can’t perform that action at this time.
0 commit comments