You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2023. It is now read-only.
time python3 -u setup.py --no-user-cfg build install ||exit 1
76
+
77
+
if [ "$SAGE_WHEELS"= yes ];then
78
+
# Use --no-build-isolation to avoid rebuilds because of dependencies:
79
+
# 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
80
+
time sdh_pip_install --no-build-isolation .
81
+
else
82
+
time python3 -u setup.py --no-user-cfg build install ||exit 1
83
+
fi
65
84
fi
66
85
67
86
# Trac #33103: The temp.* directories are large after a full build.
prune sage/ext/interpreters # In particular, __init__.py must not be present in the distribution; or sage_setup.autogen.interpreters.rebuild will not generate the code
9
2
prune sage_setup
10
3
prune sage_docbuild
11
4
prune doc
5
+
6
+
#
7
+
# Most C and C++ files are generated by Cython and should not
8
+
# be included in the sdist.
9
+
#
10
+
global-exclude *.c
11
+
global-exclude *.cpp
12
+
13
+
#
14
+
# List of C and C++ files that are actual source files,
15
+
# NOT generated by Cython. The same list appears in SAGE_ROOT/.gitignore
16
+
#
17
+
include sage/cpython/debugimpl.c
18
+
include sage/graphs/base/boost_interface.cpp
19
+
include sage/graphs/cliquer/cl.c
20
+
include sage/graphs/graph_decompositions/sage_tdlib.cpp
21
+
include sage/libs/eclib/wrap.cpp
22
+
include sage/libs/linkages/padics/relaxed/flint_helper.c
23
+
include sage/misc/inherit_comparison_impl.c
24
+
include sage/modular/arithgroup/farey.cpp
25
+
include sage/modular/arithgroup/sl2z.cpp
26
+
include sage/rings/bernmm/bern_modp.cpp
27
+
include sage/rings/bernmm/bern_modp_util.cpp
28
+
include sage/rings/bernmm/bern_rat.cpp
29
+
include sage/rings/bernmm/bernmm-test.cpp
30
+
include sage/rings/padics/transcendantal.c
31
+
include sage/rings/polynomial/weil/power_sums.c
32
+
include sage/schemes/hyperelliptic_curves/hypellfrob/hypellfrob.cpp
33
+
include sage/schemes/hyperelliptic_curves/hypellfrob/recurrences_ntl.cpp
34
+
include sage/schemes/hyperelliptic_curves/hypellfrob/recurrences_zn_poly.cpp
0 commit comments