Sage 10.1.beta9 released

55 views
Skip to first unread message

Volker Braun

unread,
Aug 5, 2023, 7:55:57 PM8/5/23
to sage-release
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

Since we are getting close to double digits the next version will be rc0. So if you want something merged do it asap!


0fd596703c8 (HEAD -> develop, tag: 10.1.beta9, github/develop) Updated SageMath version to 10.1.beta9
ffdd9f8e55c gh-36026: `sage.graphs`: Update `# needs`, use block-scoped tags
722bdec920e gh-36024: `sage -fixdoctests`: Handle directory names, call `sage -t` only once
8b23b9dd202 gh-36017: fix accidental damage to classical_geometries.py from 94bca97cfe9
cd6f6b86e01 gh-36016: CI Build & Test: Fix test errors involving optional packages coxeter3, ...
3d2a141ff17 gh-36015: pkgs/sagemath*: Exclude all__*.py files of other distributions
1329316297e gh-36011: Regular sequence: closing experimental phase of regular sequence module
c4b3f0d72f8 gh-36007: minor cleanup in binary quadratic forms over ZZ
23c08083c73 gh-36003: pkgs/sagemath-meataxe/README.rst: Remove markup unknown to PyPI
859f6ca1100 gh-36002: partial cython-lint cleanup in mod_sym_num
1b3ddbdb8b6 gh-36001: regular sequences: use "positive" partial sums algorithm
6617b499e05 gh-35999: Run pytest for src tree if no filename is given
0ad21178812 gh-35984: fix evaluation of isogenies on points of infinite order
46027e8efde gh-35980: Adapt to new Singular sat API
f12752dad84 gh-35979: refresh descent_two_isogeny.pyx
3205f9d86a2 gh-35959: some details in dirichlet.py
7315f73bc68 gh-35958: note about docker in README.md
edc4c57f906 gh-35894: Regular sequences: implement convolution / ring structure
adb62c030cd gh-35882: avoid messing with the recursion limit
a1a27b124e1 gh-35862: gap: revise make_gap_list, make_gap_matrix
d229f45a878 gh-35717: `sage.calculus`: Modularization fixes, doctest cosmetics, `# needs`
26f5a09baf7 (tag: 10.1.beta8) Updated SageMath version to 10.1.beta8

Kwankyu Lee

unread,
Aug 5, 2023, 8:09:39 PM8/5/23
to sage-release
Thanks a lot!

david....@gmail.com

unread,
Aug 6, 2023, 11:56:40 AM8/6/23
to sage-release
This release introduces a new failing doctest in `sage/graphs/bliss.pyx` and so the test bot is failing on GitHub.
It is due to some changes in `sage/groups/perm_gps/permgroup.py` (don't know which PR). In particular, method .gens() now returns a tuple and no longer a list.


Best,
David.


On Sunday, August 6, 2023 at 2:09:39 AM UTC+2 Kwankyu Lee wrote:
Thanks a lot!

Emmanuel Charpentier

unread,
Aug 8, 2023, 8:35:11 AM8/8/23
to sage-release

On debian testing running on core i7+ 16 GB RAM, upgrading 10.1.beta7 to 10.1.beta8 and rinning ptestlong gives :

sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/coding/linear_code.py # 2 doctests failed

Cosmetic, already reported.

charpent@zen-book-flip:/usr/local/sage-10$ sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/rings/integer.pyx # 1 doctest failed Running doctests with ID 2023-08-08-14-22-56-7fcd69c6. Git branch: develop Git ref: 10.1.beta0-1765-g0fd596703c Running with SAGE_LOCAL='/usr/local/sage-10/local' and SAGE_VENV='/usr/local/sage-10/local/var/lib/sage/venv-python3.11' Using --optional=debian,dot2tex,fricas,gap_jupyter,gap_packages,libsemigroups,msolve,pip,pysingular,saclib,sage,sage_spkg,singular_jupyter Features to be detected: 4ti2,benzene,bliss,buckygen,conway_polynomials,csdp,cvxopt,cvxopt,database_cremona_ellcurve,database_cremona_mini_ellcurve,database_cubic_hecke,database_jones_numfield,database_knotinfo,dvipng,fpylll,gfan,graphviz,imagemagick,ipython,jupymake,kenzo,latte_int,lrcalc_python,lrslib,mcqd,meataxe,mpmath,msolve,nauty,networkx,numpy,palp,pandoc,pdf2svg,pdftocairo,pexpect,phitigra,pillow,plantri,polytopes_db,polytopes_db_4d,pplpy,primecountpy,ptyprocess,pynormaliz,pyparsing,python_igraph,requests,rubiks,sage.combinat,sage.geometry.polyhedron,sage.graphs,sage.groups,sage.libs.ecl,sage.libs.flint,sage.libs.gap,sage.libs.ntl,sage.libs.pari,sage.libs.singular,sage.misc.cython,sage.modular,sage.modules,sage.numerical.mip,sage.plot,sage.rings.complex_double,sage.rings.finite_rings,sage.rings.function_field,sage.rings.number_field,sage.rings.padics,sage.rings.polynomial.pbori,sage.rings.real_double,sage.rings.real_mpfr,sage.sat,sage.schemes,sage.symbolic,sage_numerical_backends_coin,sagemath_doc_html,scipy,singular,sphinx,sympy,tdlib Doctesting 1 file. sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/rings/integer.pyx ********************************************************************** File "src/sage/rings/integer.pyx", line 2152, in sage.rings.integer.Integer.__pow__ Warning: Variable 'f' referenced here was set only in doctest marked '# needs sage.symbolic' f(x=3) ********************************************************************** File "src/sage/rings/integer.pyx", line 2157, in sage.rings.integer.Integer.__pow__ Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.symbolic' just before this line to avoid repeating the tag 4 times x, y, z = var('x,y,z') # optional - sage.symbolic ********************************************************************** File "src/sage/rings/integer.pyx", line 3699, in sage.rings.integer.Integer.trial_division Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.libs.pari' just before this line to avoid repeating the tag 6 times n = next_prime(10^6)*next_prime(10^7); n.trial_division() # optional - sage.libs.pari ********************************************************************** File "src/sage/rings/integer.pyx", line 3718, in sage.rings.integer.Integer.trial_division Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.libs.pari' just before this line to avoid repeating the tag 10 times n = next_prime(10^5) * next_prime(10^40); n.trial_division() # optional - sage.libs.pari ********************************************************************** File "src/sage/rings/integer.pyx", line 3907, in sage.rings.integer.Integer.? Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.libs.pari' just before this line to avoid repeating the tag 4 times p = next_prime(10^20) # optional - sage.libs.pari ********************************************************************** File "src/sage/rings/integer.pyx", line 3918, in sage.rings.integer.Integer.? Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.libs.pari' just before this line to avoid repeating the tag 4 times p = next_prime(10^15) # optional - sage.libs.pari ********************************************************************** File "src/sage/rings/integer.pyx", line 4617, in sage.rings.integer.Integer.gamma Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.symbolic' just before this line to avoid repeating the tag 4 times gamma(5) # optional - sage.symbolic ********************************************************************** File "src/sage/rings/integer.pyx", line 5138, in sage.rings.integer.Integer.is_prime_power Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.libs.pari' just before this line to avoid repeating the tag 12 times 17.is_prime_power() # optional - sage.libs.pari ********************************************************************** File "src/sage/rings/integer.pyx", line 5165, in sage.rings.integer.Integer.is_prime_power Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.libs.pari' just before this line to avoid repeating the tag 5 times (3^100).is_prime_power(get_data=True) # optional - sage.libs.pari ********************************************************************** File "src/sage/rings/integer.pyx", line 5799, in sage.rings.integer.Integer.next_probable_prime Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.libs.pari' just before this line to avoid repeating the tag 6 times (-37).next_probable_prime() # optional - sage.libs.pari ********************************************************************** File "src/sage/rings/integer.pyx", line 5993, in sage.rings.integer.Integer.previous_prime_power Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.libs.pari' just before this line to avoid repeating the tag 4 times 3.previous_prime_power() # optional - sage.libs.pari ********************************************************************** File "src/sage/rings/integer.pyx", line 6244, in sage.rings.integer.Integer._magma_init_ Warning: Consider using a block-scoped tag by inserting the line 'sage: # optional - magma' just before this line to avoid repeating the tag 4 times m = 3^(2^20) # optional - magma ********************************************************************** File "src/sage/rings/integer.pyx", line 6654, in sage.rings.integer.Integer._shift_helper Failed example: try: print('Possible error output from gmp', flush=True) 1 << (2^60) except (MemoryError, OverflowError, RuntimeError): pass else: print("Failed to raise exception") Exception raised: Traceback (most recent call last): File "/usr/local/sage-10/src/sage/doctest/forker.py", line 709, in _run self.compile_and_execute(example, compiler, test.globs) File "/usr/local/sage-10/src/sage/doctest/forker.py", line 1144, in compile_and_execute exec(compiled, globs) File "<doctest sage.rings.integer.Integer._shift_helper[8]>", line 3, in <module> Integer(1) << (Integer(2)**Integer(60)) ~~~~~~~~~~~^^~~~~~~~~~~~~~~~~~~~~~~~~~~ File "sage/rings/integer.pyx", line 6735, in sage.rings.integer.Integer.__lshift__ return (<Integer>x)._shift_helper(y, 1) File "sage/rings/integer.pyx", line 6696, in sage.rings.integer.Integer._shift_helper sig_on() FloatingPointError: Floating point exception ********************************************************************** 1 item had failures: 1 of 10 in sage.rings.integer.Integer._shift_helper [1196 tests, 1 failure, 42.08 s] ---------------------------------------------------------------------- sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/rings/integer.pyx # 1 doctest failed ---------------------------------------------------------------------- Total time for all tests: 43.1 seconds cpu time: 42.0 seconds cumulative wall time: 42.1 seconds Features detected for doctesting: mpmath,numpy,sage.libs.flint,sage.libs.pari,sage.rings.finite_rings,sage.rings.number_field,sage.rings.padics,sage.symbolic,sympy

New, possibly numerical noise.

charpent@zen-book-flip:/usr/local/sage-10$ sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/combinat/posets/posets.py # 1 doctest failed Running doctests with ID 2023-08-08-14-26-13-701f2a70. Git branch: develop Git ref: 10.1.beta0-1765-g0fd596703c Running with SAGE_LOCAL='/usr/local/sage-10/local' and SAGE_VENV='/usr/local/sage-10/local/var/lib/sage/venv-python3.11' Using --optional=debian,dot2tex,fricas,gap_jupyter,gap_packages,libsemigroups,msolve,pip,pysingular,saclib,sage,sage_spkg,singular_jupyter Features to be detected: 4ti2,benzene,bliss,buckygen,conway_polynomials,csdp,cvxopt,cvxopt,database_cremona_ellcurve,database_cremona_mini_ellcurve,database_cubic_hecke,database_jones_numfield,database_knotinfo,dvipng,fpylll,gfan,graphviz,imagemagick,ipython,jupymake,kenzo,latte_int,lrcalc_python,lrslib,mcqd,meataxe,mpmath,msolve,nauty,networkx,numpy,palp,pandoc,pdf2svg,pdftocairo,pexpect,phitigra,pillow,plantri,polytopes_db,polytopes_db_4d,pplpy,primecountpy,ptyprocess,pynormaliz,pyparsing,python_igraph,requests,rubiks,sage.combinat,sage.geometry.polyhedron,sage.graphs,sage.groups,sage.libs.ecl,sage.libs.flint,sage.libs.gap,sage.libs.ntl,sage.libs.pari,sage.libs.singular,sage.misc.cython,sage.modular,sage.modules,sage.numerical.mip,sage.plot,sage.rings.complex_double,sage.rings.finite_rings,sage.rings.function_field,sage.rings.number_field,sage.rings.padics,sage.rings.polynomial.pbori,sage.rings.real_double,sage.rings.real_mpfr,sage.sat,sage.schemes,sage.symbolic,sage_numerical_backends_coin,sagemath_doc_html,scipy,singular,sphinx,sympy,tdlib Doctesting 1 file. sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/combinat/posets/posets.py ********************************************************************** File "src/sage/combinat/posets/posets.py", line 1371, in sage.combinat.posets.posets.FinitePoset._latex_ Failed example: print(P._latex_()) # optional - dot2tex graphviz Expected: \begin{tikzpicture}[>=latex,line join=bevel,] %% \node (node_...) at (5...bp,...bp) [draw,draw=none] {$...$}; \node (node_...) at (5...bp,...bp) [draw,draw=none] {$...$}; \draw [black,->] (node_...) ..controls (...bp,...bp) and (...bp,...bp) .. (node_...); % \end{tikzpicture} Got: \begin{tikzpicture}[>=latex,line join=bevel,] %% \node (node_0) at (6.0bp,6.5bp) [draw,draw=none] {$1$}; \node (node_1) at (6.0bp,55.5bp) [draw,draw=none] {$2$}; \draw [black,->] (node_0) ..controls (6.0bp,19.603bp) and (6.0bp,30.062bp) .. (node_1); % \end{tikzpicture} ********************************************************************** File "src/sage/combinat/posets/posets.py", line 1502, in sage.combinat.posets.posets.FinitePoset.sorted Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.modules' just before this line to avoid repeating the tag 5 times P = posets.PentagonPoset() # optional - sage.modules ********************************************************************** File "src/sage/combinat/posets/posets.py", line 1957, in sage.combinat.posets.posets.FinitePoset.? Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.modules' just before this line to avoid repeating the tag 4 times L = LatticePoset({0: [1, 2, 3, 4], 1: [12], 2: [6, 7], # optional - sage.modules 3: [5, 9], 4: [5, 6, 10, 11], 5: [13], 6: [12], 7: [12, 8, 9], 8: [13], 9: [13], 10: [12], 11: [12], 12: [13]}) ********************************************************************** File "src/sage/combinat/posets/posets.py", line 2717, in sage.combinat.posets.posets.FinitePoset.bool Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.modules' just before this line to avoid repeating the tag 4 times P = posets.PentagonPoset() # optional - sage.modules ********************************************************************** File "src/sage/combinat/posets/posets.py", line 2770, in sage.combinat.posets.posets.FinitePoset.bool Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.modules' just before this line to avoid repeating the tag 4 times P = posets.PentagonPoset() # optional - sage.modules ********************************************************************** File "src/sage/combinat/posets/posets.py", line 3344, in sage.combinat.posets.posets.FinitePoset.is_antichain_of_poset Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.modules' just before this line to avoid repeating the tag 4 times P = posets.PentagonPoset() # optional - sage.modules ********************************************************************** File "src/sage/combinat/posets/posets.py", line 4387, in sage.combinat.posets.posets.FinitePoset.coxeter_smith_form Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.modules' just before this line to avoid repeating the tag 7 times P = posets.PentagonPoset() # optional - sage.modules ********************************************************************** File "src/sage/combinat/posets/posets.py", line 4722, in sage.combinat.posets.posets.FinitePoset.antichains Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.modules' just before this line to avoid repeating the tag 4 times A = posets.PentagonPoset().antichains(); A # optional - sage.modules ********************************************************************** File "src/sage/combinat/posets/posets.py", line 4739, in sage.combinat.posets.posets.FinitePoset.antichains Warning: Variable 'A' referenced here was set only in doctest marked '# needs sage.modules' list(A.elements_of_depth_iterator(2)) ********************************************************************** File "src/sage/combinat/posets/posets.py", line 6095, in sage.combinat.posets.posets.FinitePoset.relabel Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.modules' just before this line to avoid repeating the tag 5 times P = posets.PentagonPoset() # optional - sage.modules ********************************************************************** File "src/sage/combinat/posets/posets.py", line 7977, in sage.combinat.posets.posets.FinitePoset.is_slender Warning: Consider using a block-scoped tag by inserting the line 'sage: # needs sage.groups' just before this line to avoid repeating the tag 6 times W = WeylGroup(['A', 2]) # optional - sage.groups ********************************************************************** 1 item had failures: 1 of 3 in sage.combinat.posets.posets.FinitePoset._latex_ [1475 tests, 1 failure, 12.51 s] ---------------------------------------------------------------------- sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/combinat/posets/posets.py # 1 doctest failed ---------------------------------------------------------------------- Total time for all tests: 18.6 seconds cpu time: 9.4 seconds cumulative wall time: 12.5 seconds Features detected for doctesting: graphviz,sage.combinat,sage.geometry.polyhedron,sage.groups,sage.libs.flint,sage.libs.gap,sage.libs.pari,sage.libs.singular,sage.modules,sage.plot,sage.rings.finite_rings,sage.symbolic

Already reported, possibly numerical noise.

charpent@zen-book-flip:/usr/local/sage-10$ sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/coding/code_constructions.py # 1 doctest failed Running doctests with ID 2023-08-08-14-28-53-8117604d. Git branch: develop Git ref: 10.1.beta0-1765-g0fd596703c Running with SAGE_LOCAL='/usr/local/sage-10/local' and SAGE_VENV='/usr/local/sage-10/local/var/lib/sage/venv-python3.11' Using --optional=debian,dot2tex,fricas,gap_jupyter,gap_packages,libsemigroups,msolve,pip,pysingular,saclib,sage,sage_spkg,singular_jupyter Features to be detected: 4ti2,benzene,bliss,buckygen,conway_polynomials,csdp,cvxopt,cvxopt,database_cremona_ellcurve,database_cremona_mini_ellcurve,database_cubic_hecke,database_jones_numfield,database_knotinfo,dvipng,fpylll,gfan,graphviz,imagemagick,ipython,jupymake,kenzo,latte_int,lrcalc_python,lrslib,mcqd,meataxe,mpmath,msolve,nauty,networkx,numpy,palp,pandoc,pdf2svg,pdftocairo,pexpect,phitigra,pillow,plantri,polytopes_db,polytopes_db_4d,pplpy,primecountpy,ptyprocess,pynormaliz,pyparsing,python_igraph,requests,rubiks,sage.combinat,sage.geometry.polyhedron,sage.graphs,sage.groups,sage.libs.ecl,sage.libs.flint,sage.libs.gap,sage.libs.ntl,sage.libs.pari,sage.libs.singular,sage.misc.cython,sage.modular,sage.modules,sage.numerical.mip,sage.plot,sage.rings.complex_double,sage.rings.finite_rings,sage.rings.function_field,sage.rings.number_field,sage.rings.padics,sage.rings.polynomial.pbori,sage.rings.real_double,sage.rings.real_mpfr,sage.sat,sage.schemes,sage.symbolic,sage_numerical_backends_coin,sagemath_doc_html,scipy,singular,sphinx,sympy,tdlib Doctesting 1 file. sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/coding/code_constructions.py ********************************************************************** File "src/sage/coding/code_constructions.py", line 734, in sage.coding.code_constructions.ToricCode Failed example: C.minimum_distance(algorithm="guava") # optional - gap_packages (Guava package) Expected: ... 24 Got: 24 ********************************************************************** 1 item had failures: 1 of 11 in sage.coding.code_constructions.ToricCode [144 tests, 1 failure, 2.00 s] ---------------------------------------------------------------------- sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/coding/code_constructions.py # 1 doctest failed ---------------------------------------------------------------------- Total time for all tests: 2.1 seconds cpu time: 1.7 seconds cumulative wall time: 2.0 seconds Features detected for doctesting: sage.groups,sage.modules,sage.rings.finite_rings

Already reported, cosmetic.

charpent@zen-book-flip:/usr/local/sage-10$ sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/ext/memory.pyx # 1 doctest failed Running doctests with ID 2023-08-08-14-30-47-faed87e4. Git branch: develop Git ref: 10.1.beta0-1765-g0fd596703c Running with SAGE_LOCAL='/usr/local/sage-10/local' and SAGE_VENV='/usr/local/sage-10/local/var/lib/sage/venv-python3.11' Using --optional=debian,dot2tex,fricas,gap_jupyter,gap_packages,libsemigroups,msolve,pip,pysingular,saclib,sage,sage_spkg,singular_jupyter Features to be detected: 4ti2,benzene,bliss,buckygen,conway_polynomials,csdp,cvxopt,cvxopt,database_cremona_ellcurve,database_cremona_mini_ellcurve,database_cubic_hecke,database_jones_numfield,database_knotinfo,dvipng,fpylll,gfan,graphviz,imagemagick,ipython,jupymake,kenzo,latte_int,lrcalc_python,lrslib,mcqd,meataxe,mpmath,msolve,nauty,networkx,numpy,palp,pandoc,pdf2svg,pdftocairo,pexpect,phitigra,pillow,plantri,polytopes_db,polytopes_db_4d,pplpy,primecountpy,ptyprocess,pynormaliz,pyparsing,python_igraph,requests,rubiks,sage.combinat,sage.geometry.polyhedron,sage.graphs,sage.groups,sage.libs.ecl,sage.libs.flint,sage.libs.gap,sage.libs.ntl,sage.libs.pari,sage.libs.singular,sage.misc.cython,sage.modular,sage.modules,sage.numerical.mip,sage.plot,sage.rings.complex_double,sage.rings.finite_rings,sage.rings.function_field,sage.rings.number_field,sage.rings.padics,sage.rings.polynomial.pbori,sage.rings.real_double,sage.rings.real_mpfr,sage.sat,sage.schemes,sage.symbolic,sage_numerical_backends_coin,sagemath_doc_html,scipy,singular,sphinx,sympy,tdlib Doctesting 1 file. sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/ext/memory.pyx ********************************************************************** File "src/sage/ext/memory.pyx", line 9, in sage.ext.memory Failed example: 2^(2^63-3) Expected: Traceback (most recent call last): ... RuntimeError: Aborted Got: <BLANKLINE> Traceback (most recent call last): File "/usr/local/sage-10/src/sage/doctest/forker.py", line 709, in _run self.compile_and_execute(example, compiler, test.globs) File "/usr/local/sage-10/src/sage/doctest/forker.py", line 1144, in compile_and_execute exec(compiled, globs) File "<doctest sage.ext.memory[0]>", line 1, in <module> Integer(2)**(Integer(2)**Integer(63)-Integer(3)) ~~~~~~~~~~^^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ File "sage/rings/integer.pyx", line 2184, in sage.rings.integer.Integer.__pow__ return (<Integer>left)._pow_(right) File "sage/rings/integer.pyx", line 2248, in sage.rings.integer.Integer._pow_ return self._pow_long(mpz_get_si(exp)) File "sage/rings/integer.pyx", line 2280, in sage.rings.integer.Integer._pow_long sig_on() FloatingPointError: Floating point exception ********************************************************************** 1 item had failures: 1 of 2 in sage.ext.memory [3 tests, 1 failure, 0.01 s] ---------------------------------------------------------------------- sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/ext/memory.pyx # 1 doctest failed ---------------------------------------------------------------------- Total time for all tests: 0.0 seconds cpu time: 0.0 seconds cumulative wall time: 0.0 seconds Features detected for doctesting:

New, genuine AFAICT.

  • one transient failure (Timeout, passes when ran standalone) :
sage -t --long --warn-long 223.1 --random-seed=151297934955640179888039541819674259295 src/sage/interfaces/maxima.py # Timed out

HTH,

Reply all
Reply to author
Forward
0 new messages