Skip to content

Commit 735cd38

Browse files
author
Matthias Koeppe
committed
build/pkgs/sagelib/spkg-install.in: Remove duplicate invocations of 'time'
1 parent df7804e commit 735cd38

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build/pkgs/sagelib/spkg-install.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ if [ "$SAGE_EDITABLE" = yes ]; then
5353
(cd "$SITEPACKAGESDIR" && rm -rf sage sage-[1-9]*.egg-info sage-[1-9]*.dist-info)
5454
# Until https://github.com/sagemath/sage/issues/34209 switches us to PEP 660 editable wheels
5555
export SETUPTOOLS_ENABLE_FEATURES=legacy-editable
56-
time sdh_pip_editable_install .
56+
sdh_pip_editable_install .
5757

5858
if [ "$SAGE_WHEELS" = yes ]; then
5959
# Additionally build a wheel (for use in other venvs)
@@ -69,10 +69,10 @@ else
6969
if [ "$SAGE_WHEELS" = yes ]; then
7070
# Use --no-build-isolation to avoid rebuilds because of dependencies:
7171
# Compiling sage/interfaces/sagespawn.pyx because it depends on /private/var/folders/38/wnh4gf1552g_crsjnv2vmmww0000gp/T/pip-build-env-609n5985/overlay/lib/python3.10/site-packages/Cython/Includes/posix/unistd.pxd
72-
time sdh_pip_install --no-build-isolation .
72+
sdh_pip_install --no-build-isolation .
7373
else
7474
SAGE_OPTIONAL_PACKAGES_WITH_EXTENSIONS+="mcqd,tdlib,coxeter3,sirocco,meataxe,bliss"
75-
time python3 -u setup.py --no-user-cfg build install || exit 1
75+
python3 -u setup.py --no-user-cfg build install || exit 1
7676
fi
7777
fi
7878

0 commit comments

Comments
 (0)