Skip to content

Commit 1071779

Browse files
author
Release Manager
committed
sagemathgh-36411: Fix conda install instructions after `setuptools` update <!-- ^^^^^ Please provide a concise, informative and self-explanatory title. Don't put issue numbers in there, do this in the PR body below. For example, instead of "Fixes sagemath#1234" use "Introduce new method to calculate 1+1" --> <!-- Describe your changes here in detail --> - Updates install instructions for use with modern `setuptools` versions. - Restore `bootstrap` step in instructions, lost in sagemath#36367 - Unpin `setuptools`. <!-- Why is this change required? What problem does it solve? --> <!-- If this PR resolves an open issue, please link to it here. For example "Fixes sagemath#12345". --> <!-- If your change requires a documentation PR, please link it appropriately. --> ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> <!-- If your change requires a documentation PR, please link it appropriately --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> <!-- Feel free to remove irrelevant items. --> - [x] The title is concise, informative, and self-explanatory. - [ ] The description explains in detail what this PR is about. - [ ] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation accordingly. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on - sagemath#12345: short description why this is a dependency - sagemath#34567: ... --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> URL: sagemath#36411 Reported by: Matthias Köppe Reviewer(s): Dima Pasechnik, Matthias Köppe, Tobias Diez
2 parents 9144356 + d0cae80 commit 1071779

File tree

6 files changed

+21
-26
lines changed

6 files changed

+21
-26
lines changed

.github/workflows/ci-conda.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
run: |
9393
# Use --no-deps and pip check below to verify that all necessary dependencies are installed via conda.
9494
pip install --no-build-isolation --no-deps -v -v -e ./pkgs/sage-conf ./pkgs/sage-setup
95-
pip install --no-build-isolation --no-deps -v -v -e ./src
95+
pip install --no-build-isolation --no-deps --config-settings editable_mode=compat -v -v -e ./src
9696
env:
9797
SAGE_NUM_THREADS: 2
9898

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
# Set this bound until https://github.com/sagemath/sage/issues/34209 adds support for PEP660 editable builds
2-
# By setting this version bound, we avoid having to include the following in our installation instructions.
3-
# export SETUPTOOLS_ENABLE_FEATURES=legacy-editable
4-
"setuptools<64"
1+
setuptools

build/pkgs/setuptools_wheel/distros

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../setuptools/distros

build/pkgs/setuptools_wheel/distros/repology.txt

-1
This file was deleted.

pkgs/sage-conf_conda/setup.py

+15-18
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,21 @@ def run(self):
2828
raise SetupError('No conda environment is active. '
2929
'See https://doc.sagemath.org/html/en/installation/conda.html on how to get started.')
3030

31-
if os.path.exists(os.path.join(SAGE_ROOT, 'config.status')):
32-
print(f'Reusing configured SAGE_ROOT={SAGE_ROOT}')
33-
else:
34-
cmd = f"cd {SAGE_ROOT} && ./configure --enable-build-as-root --with-system-python3=force --disable-notebook --disable-sagelib --disable-sage_conf --disable-doc"
35-
cmd += ' --with-python=$CONDA_PREFIX/bin/python --prefix="$CONDA_PREFIX"'
36-
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); do echo --with-system-$pkg=force; done)'
37-
print(f"Running {cmd}")
38-
sys.stdout.flush()
39-
if os.system(cmd) != 0:
40-
if os.path.exists(os.path.join(SAGE_ROOT, 'config.status')):
41-
print("Warning: A configuration has been written, but the configure script has exited with an error. "
42-
"Carefully check any messages above before continuing.")
43-
else:
44-
print(f"Error: The configure script has failed; this may be caused by missing build prerequisites.")
45-
sys.stdout.flush()
46-
PREREQ_SPKG = "_prereq bzip2 xz libffi" # includes python3 SPKG_DEPCHECK packages
47-
os.system(f'cd {SAGE_ROOT} && export PACKAGES="$(build/bin/sage-get-system-packages conda {PREREQ_SPKG})" && [ -n "$PACKAGES" ] && echo "You can install the required build prerequisites using the following shell command" && echo "" && build/bin/sage-print-system-package-command conda --verbose --sudo install $PACKAGES && echo ""')
48-
raise SetupError("configure failed")
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"'
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); do echo --with-system-$pkg=force; done)'
34+
print(f"Running {cmd}")
35+
sys.stdout.flush()
36+
if os.system(cmd) != 0:
37+
if os.path.exists(os.path.join(SAGE_ROOT, 'config.status')):
38+
print("Warning: A configuration has been written, but the configure script has exited with an error. "
39+
"Carefully check any messages above before continuing.")
40+
else:
41+
print(f"Error: The configure script has failed; this may be caused by missing build prerequisites.")
42+
sys.stdout.flush()
43+
PREREQ_SPKG = "_prereq bzip2 xz libffi" # includes python3 SPKG_DEPCHECK packages
44+
os.system(f'cd {SAGE_ROOT} && export PACKAGES="$(build/bin/sage-get-system-packages conda {PREREQ_SPKG})" && [ -n "$PACKAGES" ] && echo "You can install the required build prerequisites using the following shell command" && echo "" && build/bin/sage-print-system-package-command conda --verbose --sudo install $PACKAGES && echo ""')
45+
raise SetupError("configure failed")
4946

5047
# In this mode, we never run "make".
5148

src/doc/en/installation/conda.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,9 @@ Here we assume that you are using a git checkout.
136136
A different Python version can be selected by replacing ``3.11`` by ``3.9``
137137
or ``3.10`` in these commands.
138138

139-
- Install the build prerequisites and the Sage library::
139+
- Bootstrap the source tree and install the build prerequisites and the Sage library::
140140

141+
$ ./bootstrap
141142
$ pip install --no-build-isolation -v -v --editable ./pkgs/sage-conf_conda ./pkgs/sage-setup
142143
$ pip install --no-build-isolation --config-settings editable_mode=compat -v -v --editable ./src
143144

@@ -160,7 +161,7 @@ suffices to restart Sage.
160161

161162
After editing any Cython files, rebuild the Sage library using::
162163

163-
$ pip install --no-build-isolation -v -v --editable src
164+
$ pip install --no-build-isolation --config-settings editable_mode=compat -v -v --editable src
164165

165166
In order to update the conda environment later, you can run::
166167

0 commit comments

Comments
 (0)