Re: [sage-release] Sage 8.7.beta7 released

2019-03-13 Thread Volker Braun
I've seen this one fail randomly, too.


On Tuesday, March 12, 2019 at 12:03:55 AM UTC+1, Justin C. Walker wrote:
>
>
>
> > On Mar 10, 2019, at 01:01 , Volker Braun  > wrote: 
> > 
> > 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 
>
> Built successfully on three macOS platforms: 10.11.6 (mid-2015 MBP, 
> Quad-core Core i7), 10.13.6 (2017 iPac Pro, 18-core Xeon W), 10.14.3 (2017 
> MBP, Quad-core Core i7). 
>
> Testing (‘ptestlong’) went as follows: 
>
> 10.11.6: all tests passed! 
>
> 10.13.6: Failures in two files: 
> sage -t --long --warn-long 70.7 src/sage/matrix/matrix_space.py  # 1 
> doctest failed 
> sage -t --long --warn-long 70.7 src/sage/libs/singular/polynomial.pyx  # 1 
> doctest failed 
> The first of these passed when run standalone.  The second (known to be 
> intermittent) passed this time. 
>
> 10.14.3: all tests passed! 
>
> The logged failures are: 
>  
> sage -t --long --warn-long 70.7 src/sage/matrix/matrix_space.py 
> ** 
> File "src/sage/matrix/matrix_space.py", line 1982, in 
> sage.matrix.matrix_space.MatrixSpace._an_element_ 
> Failed example: 
> M.density() 
> Expected: 
> 99/100 
> Got: 
> 49/50 
> ** 
> 1 item had failures: 
>1 of   7 in sage.matrix.matrix_space.MatrixSpace._an_element_ 
> [383 tests, 1 failure, 4.82 s] 
>  
> sage -t --long --warn-long 70.7 src/sage/libs/singular/polynomial.pyx  # 1 
> doctest failed 
> produced the usual blast of unexpected leaks.  Log on request. 
>  
>
> Justin 
>
> -- 
> Justin C. Walker 
> Curmudgeon at Large 
> Director 
> Institute for the Enhancement of the Director's Income 
> -- 
> Build a man a fire and he'll be warm 
>  for a night. 
> Set a man on fire and he'll be warm 
>  for the rest of his life. 
>
>
>
>

-- 
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 post to this group, send email to sage-release@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-release.
For more options, visit https://groups.google.com/d/optout.


Re: [sage-release] Sage 8.7.beta7 released

2019-03-12 Thread E. Madison Bray
On Sun, Mar 10, 2019 at 10:01 AM Volker Braun  wrote:
>
> 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
>

$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION="Ubuntu 14.04.5 LTS"

Had one strange failure with this build.  Admittedly I was running the
tests with -p 12:

sage -t --long src/sage/libs/flint/nmod_poly_linkage.pxi  # Timed out
(and interrupt failed)

It hanged, and ultimately timed out, at

sage: n = 2^23 ## line 518 ##
sage: alarm(0.2); x^n; cancel_alarm() ## line 519 ##

/home/embray/src/sagemath/sage/local/lib/python2.7/site-packages/cysignals/signals.so(+0x82d5)[0x2b9383b742d5]
/home/embray/src/sagemath/sage/local/lib/python2.7/site-packages/cysignals/signals.so(+0x837f)[0x2b9383b7437f]
/home/embray/src/sagemath/sage/local/lib/python2.7/site-packages/cysignals/signals.so(+0xa6ff)[0x2b9383b766ff]
/lib/x86_64-linux-gnu/libpthread.so.0(+0x10330)[0x2b937b8ed330]
/lib/x86_64-linux-gnu/libc.so.6(+0x10bd2b)[0x2b937bc06d2b]
/lib/x86_64-linux-gnu/libc.so.6(+0x850da)[0x2b937bb800da]
/lib/x86_64-linux-gnu/libc.so.6(__libc_malloc+0x55)[0x2b937bb7dad5]
/home/embray/src/sagemath/sage/local/lib/libpython2.7.so.1.0(+0x8d4dc)[0x2b937b5454dc]
/home/embray/src/sagemath/sage/local/lib/libpython2.7.so.1.0(PyEval_EvalFrameEx+0x81b7)[0x2b937b5c7107]

So that's strange.

Running that one test again by itself and it passed immmediately in
under a second:

sage -t --long src/sage/libs/flint/nmod_poly_linkage.pxi
[183 tests, 0.37 s]

-- 
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 post to this group, send email to sage-release@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-release.
For more options, visit https://groups.google.com/d/optout.


Re: [sage-release] Sage 8.7.beta7 released

2019-03-11 Thread 'Justin C. Walker' via sage-release



> On Mar 10, 2019, at 01:01 , Volker Braun  wrote:
> 
> 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

Built successfully on three macOS platforms: 10.11.6 (mid-2015 MBP, Quad-core 
Core i7), 10.13.6 (2017 iPac Pro, 18-core Xeon W), 10.14.3 (2017 MBP, Quad-core 
Core i7).

Testing (‘ptestlong’) went as follows:

10.11.6: all tests passed!

10.13.6: Failures in two files:
sage -t --long --warn-long 70.7 src/sage/matrix/matrix_space.py  # 1 doctest 
failed
sage -t --long --warn-long 70.7 src/sage/libs/singular/polynomial.pyx  # 1 
doctest failed
The first of these passed when run standalone.  The second (known to be 
intermittent) passed this time.

10.14.3: all tests passed!

The logged failures are:

sage -t --long --warn-long 70.7 src/sage/matrix/matrix_space.py
**
File "src/sage/matrix/matrix_space.py", line 1982, in 
sage.matrix.matrix_space.MatrixSpace._an_element_
Failed example:
M.density()
Expected:
99/100
Got:
49/50
**
1 item had failures:
   1 of   7 in sage.matrix.matrix_space.MatrixSpace._an_element_
[383 tests, 1 failure, 4.82 s]

sage -t --long --warn-long 70.7 src/sage/libs/singular/polynomial.pyx  # 1 
doctest failed
produced the usual blast of unexpected leaks.  Log on request.


Justin

--
Justin C. Walker
Curmudgeon at Large
Director
Institute for the Enhancement of the Director's Income
--
Build a man a fire and he'll be warm
 for a night.
Set a man on fire and he'll be warm
 for the rest of his life.



-- 
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 post to this group, send email to sage-release@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-release.
For more options, visit https://groups.google.com/d/optout.


[sage-release] Sage 8.7.beta7 released

2019-03-10 Thread Volker Braun
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


10407524b1 (tag: 8.7.beta7, trac/develop) Updated SageMath version to 
8.7.beta7
695a8e0aea Trac #27400: minor details in mac-app
fe0269a91b Trac #27433: py3: fix last doctest in mutable_poset
769697af01 Trac #27431: py3: fix misc/unittest
3aa99d3439 Trac #27216: Fix spkg-legacy-uninstall for GAP
5724e3ba92 Trac #25035: Use sage-dist-helpers + add DESTDIR support for 
flint and arb
0de0fbbddd Trac #27399: Expected ValueError when calling set_vertex()
f708233005 Trac #27423: fix constructor of ConvexRationalPolyhedralCone
21f64546a0 Trac #27370: Global function fields: differentials
4e89a1e0dc Trac #27291: Frenchism (typos): "representative" should be used 
instead of  "representant"
4e247fddc7 Trac #27389: Fix src/build/cythonized/build/cythonized directory
063963fdef Trac #27429: some little code cleanup
5b5d06ae9e Trac #27398: using sdh dist helpers for plantri
80baa84ed6 Trac #27386: Cache gens_dict()
9f275f1612 Trac #27426: update openssl
8a8be1a91a Trac #27420: cypari2 version 2.1.0
f85d8ebb9b Trac #27411: add monoid of knots
0c830408e8 Trac #24741: py3: numerous additional fixes for sage.numerical
ac9a885ca4 Trac #27414: Fix some py3 doctests in algebras
8fcc6fbf4c Trac #27417: Fix Cython vtable warnings in 
padic_generic_element.pyx
820b5dccec Trac #27416: Makefile buildbot-python3 target should build the 
documentation
569c11c2aa Trac #27415: py3: algebras/lie_algebras
25b2a080a4 Trac #27410: simplify and speedup of 
YoungsLatticePrincipalOrderIdeal
7ad8037267 Trac #27407: remove deprecated stuff in designs
839360d9ee Trac #27402: remove the doctest flag "optional - gmpy2"
2ee44db2d1 Trac #27387: bug in saturation of points on elliptic curves over 
number fields
c92ab53112 Trac #27409: removed deprecated method in manifolds
4c86724bcd Trac #27406: py3: various fixes about print and hash
880ed5f5d7 Trac #27405: Ignore pip stderr when querying packages
d2c72b3e20 Trac #27404: py3: fix some __format__ failures
c8b8488a19 Trac #27146: Speed up initialization code for partitions
b920e86002 Trac #27403: pplpy full build failure
d25257113b Trac #27376: missing link in doc of 
sage.geometry.polyhedron.base.Polyhedron_base.face_fa
dcfad21666 Trac #27394: fixing minor javascript issues in our graph_plot_js
bdea1c0b92 Trac #27392: the omega-signature of knots and links
a98d47a6d5 Trac #27390: Py3: test_class_pickling.py fix method resolution 
order error
45aa76cd03 Trac #27382: enhance conversion of sparse matrices to magma
6abccaec4c Trac #27368: Allow supercrystals category to be inherited by 
default for subcrystals
28e0168130 Trac #27367: Upgrade to mpfrcx 0.5
f1eb5ab84b Trac #27352: Add checks for matrix multiplication
eac49eca05 Trac #27188: kenzo package and interface
28cb214798 Trac #27170: py3: fix 14 doctests in digraph.py
cb41fef124 Trac #25894: Add subgroup method to MatrixGroup_base
02db0fd7bb Trac #27388: spkg installation: convert read-only files to 
owner-writable
b899c12910 Trac #27124: File manifests complete broken on OSX
2f926c717f Trac #26930: add GAP io and crypting pkgs
c59b6881d8 (tag: 8.7.beta6) Updated SageMath version to 8.7.beta6

-- 
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 post to this group, send email to sage-release@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-release.
For more options, visit https://groups.google.com/d/optout.