On a slightly smaller machine (Debin testing on core i5 + 8 GB RAM), 9.1.beta4 can be rebuilt after make distclean; a *serial* make testalllong gives 8 transient and one permanent failures:
Using --optional=build,dochtml,dot2tex,external,fricas,giacpy_sage,libsemigroups,memlimit,sage External software to be detected: cplex,ffmpeg,graphviz,gurobi,imagemagick,internet,latex,macaulay2,magma,maple,mathematica,matlab,octave,pandoc,scilab External software detected for doctesting: ffmpeg,graphviz,imagemagick,internet,latex,mathematica,octave,pandoc File Result P/T src/sage/matrix/matrix_double_dense.pyx 1 doctest failed P src/sage/databases/findstat.py 8 doctests failed T src/sage/combinat/tutorial.py 1 doctest failed T src/sage/plot/animate.py 7 doctests failed T src/sage/interfaces/octave.py 3 doctests failed T src/sage/interfaces/magma_free.py 2 doctests failed T src/doc/en/constructions/interface_issues.rst 1 doctest failed T src/doc/en/constructions/linear_algebra.rst 1 doctest failed T src/doc/en/developer/coding_in_other.rst 1 doctest failed T The failure on matrix_double_dense is new on this machine: sage -t --long src/sage/matrix/matrix_double_dense.pyx ********************************************************************** File "src/sage/matrix/matrix_double_dense.pyx", line 2523, in sage.matrix.matrix_double_dense.Matrix_double_dense.is_unitary Failed example: P.is_unitary(algorithm='orthonormal') Expected: Traceback (most recent call last): ... error: ((lwork==-1)||(lwork >= MAX(1,2*n))) failed for 3rd keyword lwork: zgees:lwork=0 Got: <BLANKLINE> Traceback (most recent call last): File "/usr/local/sage-9/local/lib/python3.7/site-packages/sage/doctest/forker.py", line 681, in _run self.compile_and_execute(example, compiler, test.globs) File "/usr/local/sage-9/local/lib/python3.7/site-packages/sage/doctest/forker.py", line 1123, in compile_and_execute exec(compiled, globs) File "<doctest sage.matrix.matrix_double_dense.Matrix_double_dense.is_unitary[23]>", line 1, in <module> P.is_unitary(algorithm='orthonormal') File "sage/matrix/matrix_double_dense.pyx", line 2574, in sage.matrix.matrix_double_dense.Matrix_double_dense.is_unitary (build/cythonized/sage/matrix/matrix_double_dense.c:16169) _, T = self.schur(base_ring=sage.rings.complex_double.CDF) File "sage/matrix/matrix_double_dense.pyx", line 3274, in sage.matrix.matrix_double_dense.Matrix_double_dense.schur (build/cythonized/sage/matrix/matrix_double_dense.c:19291) T._matrix_numpy, Q._matrix_numpy = scipy.linalg.schur(self._matrix_numpy, output=format) File "/usr/local/sage-9/local/lib/python3.7/site-packages/scipy/linalg/decomp_schur.py", line 139, in schur result = gees(lambda x: None, a1, lwork=-1) ValueError: On entry to ZGEES parameter number 6 had an illegal value ********************************************************************** 1 item had failures: 1 of 29 in sage.matrix.matrix_double_dense.Matrix_double_dense.is_unitary [650 tests, 1 failure, 1.20 s] HTH, Le samedi 15 février 2020 19:35:49 UTC+1, Emmanuel Charpentier a écrit : On Debian testing running on core i7 + 16 GB RAM: > > - I was unable to upgrade 9.1.beta3 + #21811 to this version, the > build failing to find the libraries for M4RI (that were present). > This persisted after reinstallation of these libraries, and even > after ./configure. I succeeeded by rebuilding from scratch (i. e. > after make distclean). > - make testallong (i. e. serially) gives me a new permanent error : > > Running doctests with ID 2020-02-15-15-03-08-7add6b7f. > Git branch: develop > Using > --optional=build,dochtml,dot2tex,external,fricas,gap_packages,giacpy_sage,libsemigroups,memlimit,sage > External software to be detected: > cplex,ffmpeg,graphviz,gurobi,imagemagick,internet,latex,macaulay2,magma,maple,mathematica,matlab,octave,pandoc,scilab > > External software detected for doctesting: > ffmpeg,graphviz,imagemagick,internet,latex,mathematica,pandoc > > File Result P/T > src/sage/numerical/backends/glpk_backend.pyx 1 doctest failed P > src/sage/libs/glpk/error.pyx 1 doctest failed P > src/sage/databases/findstat.py 8 doctests failed T > src/sage/plot/animate.py 7 doctests failed T > src/sage/combinat/tutorial.py 1 doctest failed T > src/sage/tests/gap_packages.py 1 doctest failed P > src/sage/matrix/matrix_double_dense.pyx 1 doctest failed P > > Details for matrix_double_dense: > > sage -t --long --warn-long 50.1 src/sage/matrix/matrix_double_dense.pyx > ********************************************************************** > File "src/sage/matrix/matrix_double_dense.pyx", line 2523, in > sage.matrix.matrix_double_dense.Matrix_double_dense.is_unitary > Failed example: > P.is_unitary(algorithm='orthonormal') > Expected: > Traceback (most recent call last): > ... > error: ((lwork==-1)||(lwork >= MAX(1,2*n))) failed for 3rd keyword lwork: > zgees:lwork=0 > Got: > <BLANKLINE> > Traceback (most recent call last): > File > "/usr/local/sage-9/local/lib/python3.7/site-packages/sage/doctest/forker.py", > line 681, in _run > self.compile_and_execute(example, compiler, test.globs) > File > "/usr/local/sage-9/local/lib/python3.7/site-packages/sage/doctest/forker.py", > line 1123, in compile_and_execute > exec(compiled, globs) > File "<doctest > sage.matrix.matrix_double_dense.Matrix_double_dense.is_unitary[23]>", line 1, > in <module> > P.is_unitary(algorithm='orthonormal') > File "sage/matrix/matrix_double_dense.pyx", line 2574, in > sage.matrix.matrix_double_dense.Matrix_double_dense.is_unitary > (build/cythonized/sage/matrix/matrix_double_dense.c:16169) > _, T = self.schur(base_ring=sage.rings.complex_double.CDF) > File "sage/matrix/matrix_double_dense.pyx", line 3274, in > sage.matrix.matrix_double_dense.Matrix_double_dense.schur > (build/cythonized/sage/matrix/matrix_double_dense.c:19291) > T._matrix_numpy, Q._matrix_numpy = > scipy.linalg.schur(self._matrix_numpy, output=format) > File > "/usr/local/sage-9/local/lib/python3.7/site-packages/scipy/linalg/decomp_schur.py", > line 139, in schur > result = gees(lambda x: None, a1, lwork=-1) > ValueError: On entry to ZGEES parameter number 6 had an illegal value > ********************************************************************** > 1 item had failures: > 1 of 29 in sage.matrix.matrix_double_dense.Matrix_double_dense.is_unitary > [650 tests, 1 failure, 1.01 s] > ---------------------------------------------------------------------- > sage -t --long --warn-long 50.1 src/sage/matrix/matrix_double_dense.pyx # 1 > doctest failed > ---------------------------------------------------------------------- > Total time for all tests: 1.1 seconds > cpu time: 1.0 seconds > cumulative wall time: 1.0 seconds > > The other permanent errors have already been reported multiple times. > > HTH, > > Le vendredi 14 février 2020 00:07:32 UTC+1, Volker Braun a écrit : > > As always, you can get the latest beta version from the "develop" git >> branch. Alternatively, the self-contained source tarball is at >> http://www.sagemath.org/download-latest.html >> >> >> 6dbca5f8f9 (tag: 9.1.beta4, trac/develop) Updated SageMath version to >> 9.1.beta4 >> 158b93057a Trac #29168: less unused imports and better .lgtm config file >> e510d03069 Trac #29166: refresh the file Iwahori-Hecke >> 7e7d7ec56f Trac #29145: Indeterminacy locus and image of morphisms of >> schemes >> 9119443092 Trac #29123: little doc cleanup of "prime_range" >> 3322731dd4 Trac #29110: Make `dim` and alias for `dimension` in >> combinatorial polyhedron >> 0b88387957 Trac #29074: Better error message for polar of non-full >> dimensional polyhedra >> ead6f554da Trac #28788: MR38: Fix documentation of spkg-configure.m4 and >> make output more verbose >> 5aac4d5055 Trac #28243: Accelerate `is_cactus()` >> 0324ad84af Trac #29173: fix factorization of multivariate Laurent >> polynomials >> c1a90dee4c Trac #29163: repair the phc interface >> 886980a802 Trac #29155: Full-dimensional face of Polyhedron should have >> equations >> 3f9375ca99 Trac #29148: Add DESTDIR and Cygwin support for mcqd >> 74c913427f Trac #29144: remove deprecated stuff from tickets 22*** >> 938564c6a4 Trac #29138: cleanup and some fixes for Free Zinbiel algebras >> 128c030f69 Trac #29135: extend the STL representation to unions and >> transforms >> e8fccdff04 Trac #29134: node_number_at_depth broken for binary trees >> 6344f4f6de Trac #29125: `is_inscribed` depends on order of vertices >> 3e754d7157 Trac #29115: Fix deprecation warnings with scipy 1.4 >> 8b9e6bbe8a Trac #29112: Implement incidence matrix for combinatorial >> polyhedron >> 61967966ff Trac #29109: update NTL to the latest version (11.4.3) >> af348cfc28 Trac #29103: get rid of part of itervalues >> 554fa02a4c Trac #29083: first parameter of a normal method must be self >> 67a399edf1 Trac #29081: allow proper detection of gf2x 1.3 >> d5fdda348a Trac #29080: Degenerate Metric Submanifold: New features >> 3c75a3a245 Trac #29062: build/pkgs/python3/spkg-install: Install >> valgrind-python.supp in $SAGE_LOCAL, not in $SAGE_SRC >> 55b2e87f09 Trac #29034: let the example of set with grading (NN) know >> that it is infinite >> 0ff6921902 Trac #28880: Prepare setting up polyhedron from both Vrep and >> Hrep for different backends >> 84403fb80d Trac #28867: 1 imagemagick failing doctest in misc/latex.py >> 1143c8abd3 Trac #28862: Localization of integral domains >> 52644d49e9 Trac #28724: Polyhedron._acted_upon_ should handle left >> multiplication by matrices, linear transformations >> 8870d6bb19 Trac #25049: Add DESTDIR support for r, and other cleanup >> ed7bc14f75 Trac #21811: libecl does not install with libffi 3.3 (e.g. on >> OpenSuSE gcc5-7, Debian 11, etc) >> f4f06c6c47 Trac #29121: One-line fix for blocker ".pc files generated in >> src/ are not cleaned by `make misc-clean` / `make distclean` >> 84e623c1b2 Trac #29120: Two-line fix for "./configure is too sensitive to >> stray files/subdirectories" >> 1d465c7e3c (tag: 9.1.beta3) Updated SageMath version to 9.1.beta3 >> >> > -- You received this message because you are subscribed to the Google Groups "sage-release" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-release+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/sage-release/7feadde9-e458-4b11-be25-24ee05c8d520%40googlegroups.com.