[sage-release] Re: Sage 8.9.beta8 released

2019-09-03 Thread Sébastien Labbé
On Sage 8.9.beta8, running optional and external tests

Using 
--optional=awali,cbc,cryptominisat,dot2tex,e_antic,external,glucose,memlimit,normaliz,notedown,openssl,pandoc_attributes,pycosat,pynormaliz,python2,rst2ipynb,sage

I get:

--
sage -t --long src/sage/databases/oeis.py  # 1 doctest failed
sage -t --long src/sage/combinat/designs/ext_rep.py  # 1 doctest failed
sage -t --long src/sage/databases/findstat.py  # Timed out
--
External software detected for doctesting: 
ffmpeg,graphviz,gurobi,imagemagick,internet,latex,pandoc

Rerunning failed tests, I get:

--
sage -t --long src/sage/databases/oeis.py  # 1 doctest failed
sage -t --long src/sage/databases/findstat.py  # Timed out
--
External software detected for doctesting: internet

Failures are copied below. findstat.py has lots of failures before the 
timed out test happening at line 2867

Follow up at https://trac.sagemath.org/ticket/25536

sage -t --long src/sage/databases/oeis.py
**
File "src/sage/databases/oeis.py", line 90, in sage.databases.oeis
Failed example:
p.cross_references(fetch=True)# optional -- internet
Expected:
0: A000798: Number of different quasi-orders (or topologies, or 
transitive digraphs) with n labeled elements.
1: A001035: Number of partially ordered sets ("posets") with n labeled 
elements (or labeled acyclic transitive digraphs).
2: A001930: Number of topologies, or transitive digraphs with n 
unlabeled nodes.
3: A006057: Number of topologies on n labeled points satisfying axioms 
T_0-T_4.
4: A079263: Number of constrained mixed models with n factors.
5: A079265: Number of antisymmetric transitive binary relations on n 
unlabeled points.
6: A263859: Triangle read by rows: T(n,k) (n>=1, k>=0) is the number of 
posets with n elements and rank k (or depth k+1).
Got:
 0: A000798: Number of different quasi-orders (or topologies, or 
transitive digraphs) with n labeled elements.
 1: A001035: Number of partially ordered sets ("posets") with n labeled 
elements (or labeled acyclic transitive digraphs).
 2: A001930: Number of topologies, or transitive digraphs with n 
unlabeled nodes.
 3: A006057: Number of topologies on n labeled points satisfying axioms 
T_0-T_4.
 4: A079263: Number of constrained mixed models with n factors.
 5: A079265: Number of antisymmetric transitive binary relations on n 
unlabeled points.
 6: A263859: Triangle read by rows: T(n,k) (n>=1, k>=0) is the number 
of posets with n elements and rank k (or depth k+1).
 7: A316978: Number of factorizations of n into factors > 1 with no 
equivalent primes.
 8: A319559: Number of non-isomorphic T_0 set systems of weight n.
 9: A326939: Number of T_0 sets of subsets of {1..n} that cover all n 
vertices.
10: A326943: Number of T_0 sets of subsets of {1..n} that cover all n 
vertices and are closed under intersection.
11: A326944: Number of T_0 sets of subsets of {1..n} that cover all n 
vertices, contain {}, and are closed under intersection.
12: A326947: BII-numbers of T_0 set-systems.
**
1 item had failures:
   1 of  26 in sage.databases.oeis
5 webbrowser tests not run
0 tests not run because we ran out of time
[266 tests, 1 failure, 60.52 s]




sage -t --long src/sage/combinat/designs/ext_rep.py
**
File "src/sage/combinat/designs/ext_rep.py", line 556, in 
sage.combinat.designs.ext_rep.open_extrep_url
Failed example:
s = 
ext_rep.designs_from_XML_url("http://designtheory.org/database/v-b-k/v3-b6-k2.icgsa.txt.bz2;)
 
# optional - internet
Exception raised:
Traceback (most recent call last):
  File 
"/home/slabbe/GitBox/sage/local/lib/python2.7/site-packages/sage/doctest/forker.py",
 
line 681, in _run
self.compile_and_execute(example, compiler, test.globs)
  File 
"/home/slabbe/GitBox/sage/local/lib/python2.7/site-packages/sage/doctest/forker.py",
 
line 1105, in compile_and_execute
exec(compiled, globs)
  File "", 
line 1, in 
s = 
ext_rep.designs_from_XML_url("http://designtheory.org/database/v-b-k/v3-b6-k2.icgsa.txt.bz2;)
 
# optional - internet
  File 
"/home/slabbe/GitBox/sage/local/lib/python2.7/site-packages/sage/combinat/designs/ext_rep.py",
 
line 1062, in designs_from_XML_url
s = open_extrep_url(url)
  File 
"/home/slabbe/GitBox/sage/local/lib/python2.7/site-packages/sage/combinat/designs/ext_rep.py",
 
line 559, in open_extrep_url
f = urlopen(url)
  File 

[sage-release] Re: Sage 8.9.beta8 released

2019-09-02 Thread Simon King
Hi!

On 2019-08-25, Volker Braun  wrote:
> I'm inclined to name the next version 9.0. In particular, we now have 
> Python 3 support that, while not perfect, is at least usable so we should 
> mark that with a new major version. Also point-9 is a natural place to 
> switch. If you want to voice your opinion on that issue: now is the time ;-)

Since I found an example of a pickle that cannot be unpickled in
Python-3 (and as far as I can see it is independent of optional
packages), I opened #28444. I believe losing data in the transition from
python-2 to python-3 is a blocker.

It seems to me that the error occurs in Python's pickle module, but I am
not sure. In any case, I'd appreciate help on #28444 by Python-3
experts.

Best regards,
Simon

-- 
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/qkjegh%24743i%242%40blaine.gmane.org.


[sage-release] Re: Sage 8.9.beta8 released

2019-08-29 Thread Volker Braun
Thanks, fixed!

On Thursday, August 29, 2019 at 5:46:06 PM UTC+2, Eric Gourgoulhon wrote:
>
> Hi Volker, 
>
> Le lundi 26 août 2019 00:37:50 UTC+2, Volker Braun a écrit :
>  
>
>> 40c5efa0c8 Trac #28365: Use something instead of time() to ensure 
>> Manifold uniqueness in tests
>>
>
>
> Although it appears in the list of 8.9.beta8 merged tickets,  #28365 
>  has not been closed. 
>
> Eric. 
>

-- 
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/c6981ab8-6bf9-4ec6-8a9c-a141593b737c%40googlegroups.com.


[sage-release] Re: Sage 8.9.beta8 released

2019-08-29 Thread Eric Gourgoulhon
Hi Volker, 

Le lundi 26 août 2019 00:37:50 UTC+2, Volker Braun a écrit :
 

> 40c5efa0c8 Trac #28365: Use something instead of time() to ensure Manifold 
> uniqueness in tests
>


Although it appears in the list of 8.9.beta8 merged tickets,  #28365 
 has not been closed. 

Eric. 

-- 
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/33359dfb-590c-4b26-9a60-292dbc977d7c%40googlegroups.com.


[sage-release] Re: Sage 8.9.beta8 released

2019-08-27 Thread Emmanuel Charpentier
On a slightly smaller machine (Debian testing running on core i5 + 8 GB 
RAM), I get only the third one ; this has already been the case with the 
previous beta.

HTH,

Le lundi 26 août 2019 16:14:13 UTC+2, Emmanuel Charpentier a écrit :
>
> On Debian testing running on core i7 + 16 GB RAM, ptest-python3 gets three 
> permanent failuresn already reported for the previous versions:
>
> --
> sage -t --long --warn-long 161.7 src/sage/graphs/strongly_regular_db.pyx  
> # 4 doctests failed
> sage -t --long --warn-long 161.7 
> src/sage/algebras/quantum_groups/quantum_group_gap.py  # 6 doctests failed
> sage -t --long --warn-long 161.7 
> src/sage/rings/polynomial/polynomial_rational_flint.pyx  # 1 doctest failed
> --
>
> Details on demand (seems identica (or very close)l to what's already been 
> reported, but I didn't formally check...).
>
> HTH,
>
>
> Le lundi 26 août 2019 00:37:50 UTC+2, 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 
>>
>> It is nearing the end of the 8.9 merge window, so if you want something 
>> merged then this is your last chance.
>>
>> I'm inclined to name the next version 9.0. In particular, we now have 
>> Python 3 support that, while not perfect, is at least usable so we should 
>> mark that with a new major version. Also point-9 is a natural place to 
>> switch. If you want to voice your opinion on that issue: now is the time ;-)
>>
>>
>> 4583b4056e (tag: 8.9.beta8, trac/develop) Updated SageMath version to 
>> 8.9.beta8
>> 6565e63ee9 Trac #28373: new big bag of typos
>> 0052843038 Trac #28297: Small optimizations to arithmetic in number 
>> fields of degree > 2
>> a9f414a6f8 Trac #28057: Adding precision in computing the generators of 
>> the period lattice of an elliptic curve.
>> 40c5efa0c8 Trac #28365: Use something instead of time() to ensure 
>> Manifold uniqueness in tests
>> bd8504c9e8 Trac #28335: Cythonize Yen_k_shortest_simple_paths and 
>> feng_k_shortest_simple_paths
>> c1d5763dc3 Trac #28147: Remove _derivative from Polynomial_template
>> ef1517da96 Trac #28056: Sboxes Maintenance
>> 05bd7671a2 Trac #26098: Implement L-functions using the PARI library
>> c050128f4a Trac #20755: Bug in solve due to a bug in 
>> symbolic_expression_from_maxima_string
>> 2a4bfffc48 Trac #28353: var() with single-element list/tuple crashes with 
>> unhandled TypeError
>> 0a45dfc784 Trac #28371: py3: errors with optional package CSDP
>> 5ab84a6fb3 Trac #28369: Improve progress report in gitlab-ci
>> a8599952c3 Trac #28367: MR30: Update README.md: -py3 suffix
>> 56f7684a57 Trac #28346: Use dots instead of precision in 
>> polynomial_element
>> 8edd3f2797 Trac #28201: small cleanup of databases/cremona
>> 1b7d07b6cc Trac #27573: PRESENT Block Cipher
>> 5f22d242b6 Trac #28321: py3: rationals can not be initialized from a pair 
>> of big Python ints
>> b972100c84 Trac #24494: Deprecate set_planar_positions()
>> 42eb5103aa Trac #28364: MR29: Update faq-usage.rst
>> 047992b031 Trac #28361: Implement parameter external_face of 
>> layout_planar()
>> ae73a81a59 Trac #28343: Three.js: Support basic mesh plots
>> 7e623eddb1 Trac #28116: Cython 0.29.12
>> 7508513e65 Trac #28108: Py3: ValueError in graph_generators doctests with 
>> plantri optional package
>> a98c0ab16f Trac #28347: Add as_integer_ratio() for Integer, Rational, 
>> RealNumber, RealDoubleElement
>> 431187f776 Trac #28344: Fix some issues with submanifolds and improve 
>> their documentation
>> 7c0d719021 Trac #28342: spkg-configure.m4 for m4ri, m4rie, givaro
>> 5d6ac68f68 Trac #28228: Semistandard super tableau and standard super 
>> tableau for superRSK
>> 7d561d89cf (tag: 8.9.beta7) Updated SageMath version to 8.9.beta7
>>
>>

-- 
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/af463a6a-cf13-4a8d-b872-7bb3d79c7440%40googlegroups.com.


[sage-release] Re: Sage 8.9.beta8 released

2019-08-27 Thread Jean-Philippe Labbé
Guten Tag,

Le lundi 26 août 2019 00:37:50 UTC+2, Volker Braun a écrit :

> I'm inclined to name the next version 9.0. In particular, we now have 
> Python 3 support that, while not perfect, is at least usable so we should 
> mark that with a new major version. Also point-9 is a natural place to 
> switch. If you want to voice your opinion on that issue: now is the time ;-)
>
 
+1

-- 
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/c0294fc9-581e-41ef-8031-ac28d6a830eb%40googlegroups.com.


[sage-release] Re: Sage 8.9.beta8 released

2019-08-26 Thread arojas


El lunes, 26 de agosto de 2019, 0:37:50 (UTC+2), Volker Braun escribió:
>
> 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 
>
> It is nearing the end of the 8.9 merge window, so if you want something 
> merged then this is your last chance.
>
>
>
It would be good if 25727 could go in, otherwise some of the new supported 
integrals in beta4 will not work on non-english locales (still needs a 
decision on the scope of the fix) 

-- 
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/11ce9411-e17b-43ca-8bb6-2a8cf699caa1%40googlegroups.com.


[sage-release] Re: Sage 8.9.beta8 released

2019-08-26 Thread John H Palmieri
On Sunday, August 25, 2019 at 3:37:50 PM UTC-7, 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 
>
> It is nearing the end of the 8.9 merge window, so if you want something 
> merged then this is your last chance.
>

I would like to see #28334 and #28403 merged (the second will have a 
positive review within a day or so, unless we hear objections). I would 
also like #27967 to be resolved and merged, but unfortunately I don't know 
the timetable. I would ask you to keep an eye on it, and if it has a 
positive review soon, please merge it. After those three tickets, assuming 
no regressions, all tests would pass with Python 3 on OS X, or at least on 
the OS X machines I have access to.
 

>
> I'm inclined to name the next version 9.0. In particular, we now have 
> Python 3 support that, while not perfect, is at least usable so we should 
> mark that with a new major version. Also point-9 is a natural place to 
> switch. If you want to voice your opinion on that issue: now is the time ;-)
>

+1

With 9.0.beta0, do we make building with Python 3 the default? All 
developers are using it by now, right? Right?

-- 
John

-- 
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/77b58131-8ac4-46cf-912f-d680afe9fafe%40googlegroups.com.


Re: [sage-release] Re: Sage 8.9.beta8 released

2019-08-26 Thread Volker Braun
Yes, thats our versioning scheme: 8.9.beta8 -> 8.9rc0 -> ... -> 8.9 -> 
9.0.beta0 -> ... -> 9.0


On Monday, August 26, 2019 at 5:05:30 PM UTC+2, E. Madison Bray wrote:
>
> IMO we should go forward with 8.9 for now and make the next version 9.0. 
> By then Python 3 support will be even more solid. 
>

-- 
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/b010bd19-dabd-46dd-8790-b0df28bf2865%40googlegroups.com.


Re: [sage-release] Re: Sage 8.9.beta8 released

2019-08-26 Thread E. Madison Bray
IMO we should go forward with 8.9 for now and make the next version 9.0. By
then Python 3 support will be even more solid.


On Mon, Aug 26, 2019, 16:54 Frédéric Chapoton  wrote:

> The second file should have been fixed by
> https://trac.sagemath.org/ticket/28312
>
> but it was probably not tested..
>
> Le lundi 26 août 2019 16:14:13 UTC+2, Emmanuel Charpentier a écrit :
>>
>> On Debian testing running on core i7 + 16 GB RAM, ptest-python3 gets
>> three permanent failuresn already reported for the previous versions:
>>
>> --
>> sage -t --long --warn-long 161.7 src/sage/graphs/strongly_regular_db.pyx
>> # 4 doctests failed
>> sage -t --long --warn-long 161.7
>> src/sage/algebras/quantum_groups/quantum_group_gap.py  # 6 doctests failed
>> sage -t --long --warn-long 161.7
>> src/sage/rings/polynomial/polynomial_rational_flint.pyx  # 1 doctest failed
>> --
>>
>> Details on demand (seems identica (or very close)l to what's already been
>> reported, but I didn't formally check...).
>>
>> HTH,
>>
>>
>> Le lundi 26 août 2019 00:37:50 UTC+2, 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
>>>
>>> It is nearing the end of the 8.9 merge window, so if you want something
>>> merged then this is your last chance.
>>>
>>> I'm inclined to name the next version 9.0. In particular, we now have
>>> Python 3 support that, while not perfect, is at least usable so we should
>>> mark that with a new major version. Also point-9 is a natural place to
>>> switch. If you want to voice your opinion on that issue: now is the time ;-)
>>>
>>>
>>> 4583b4056e (tag: 8.9.beta8, trac/develop) Updated SageMath version to
>>> 8.9.beta8
>>> 6565e63ee9 Trac #28373: new big bag of typos
>>> 0052843038 Trac #28297: Small optimizations to arithmetic in number
>>> fields of degree > 2
>>> a9f414a6f8 Trac #28057: Adding precision in computing the generators of
>>> the period lattice of an elliptic curve.
>>> 40c5efa0c8 Trac #28365: Use something instead of time() to ensure
>>> Manifold uniqueness in tests
>>> bd8504c9e8 Trac #28335: Cythonize Yen_k_shortest_simple_paths and
>>> feng_k_shortest_simple_paths
>>> c1d5763dc3 Trac #28147: Remove _derivative from Polynomial_template
>>> ef1517da96 Trac #28056: Sboxes Maintenance
>>> 05bd7671a2 Trac #26098: Implement L-functions using the PARI library
>>> c050128f4a Trac #20755: Bug in solve due to a bug in
>>> symbolic_expression_from_maxima_string
>>> 2a4bfffc48 Trac #28353: var() with single-element list/tuple crashes
>>> with unhandled TypeError
>>> 0a45dfc784 Trac #28371: py3: errors with optional package CSDP
>>> 5ab84a6fb3 Trac #28369: Improve progress report in gitlab-ci
>>> a8599952c3 Trac #28367: MR30: Update README.md: -py3 suffix
>>> 56f7684a57 Trac #28346: Use dots instead of precision in
>>> polynomial_element
>>> 8edd3f2797 Trac #28201: small cleanup of databases/cremona
>>> 1b7d07b6cc Trac #27573: PRESENT Block Cipher
>>> 5f22d242b6 Trac #28321: py3: rationals can not be initialized from a
>>> pair of big Python ints
>>> b972100c84 Trac #24494: Deprecate set_planar_positions()
>>> 42eb5103aa Trac #28364: MR29: Update faq-usage.rst
>>> 047992b031 Trac #28361: Implement parameter external_face of
>>> layout_planar()
>>> ae73a81a59 Trac #28343: Three.js: Support basic mesh plots
>>> 7e623eddb1 Trac #28116: Cython 0.29.12
>>> 7508513e65 Trac #28108: Py3: ValueError in graph_generators doctests
>>> with plantri optional package
>>> a98c0ab16f Trac #28347: Add as_integer_ratio() for Integer, Rational,
>>> RealNumber, RealDoubleElement
>>> 431187f776 Trac #28344: Fix some issues with submanifolds and improve
>>> their documentation
>>> 7c0d719021 Trac #28342: spkg-configure.m4 for m4ri, m4rie, givaro
>>> 5d6ac68f68 Trac #28228: Semistandard super tableau and standard super
>>> tableau for superRSK
>>> 7d561d89cf (tag: 8.9.beta7) Updated SageMath version to 8.9.beta7
>>>
>>> --
> 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/95fa41a9-4a1f-49fa-89d4-cfc931cb0792%40googlegroups.com
> 
> .
>

-- 
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 

[sage-release] Re: Sage 8.9.beta8 released

2019-08-26 Thread Frédéric Chapoton
The second file should have been fixed by 
https://trac.sagemath.org/ticket/28312

but it was probably not tested..

Le lundi 26 août 2019 16:14:13 UTC+2, Emmanuel Charpentier a écrit :
>
> On Debian testing running on core i7 + 16 GB RAM, ptest-python3 gets three 
> permanent failuresn already reported for the previous versions:
>
> --
> sage -t --long --warn-long 161.7 src/sage/graphs/strongly_regular_db.pyx  
> # 4 doctests failed
> sage -t --long --warn-long 161.7 
> src/sage/algebras/quantum_groups/quantum_group_gap.py  # 6 doctests failed
> sage -t --long --warn-long 161.7 
> src/sage/rings/polynomial/polynomial_rational_flint.pyx  # 1 doctest failed
> --
>
> Details on demand (seems identica (or very close)l to what's already been 
> reported, but I didn't formally check...).
>
> HTH,
>
>
> Le lundi 26 août 2019 00:37:50 UTC+2, 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 
>>
>> It is nearing the end of the 8.9 merge window, so if you want something 
>> merged then this is your last chance.
>>
>> I'm inclined to name the next version 9.0. In particular, we now have 
>> Python 3 support that, while not perfect, is at least usable so we should 
>> mark that with a new major version. Also point-9 is a natural place to 
>> switch. If you want to voice your opinion on that issue: now is the time ;-)
>>
>>
>> 4583b4056e (tag: 8.9.beta8, trac/develop) Updated SageMath version to 
>> 8.9.beta8
>> 6565e63ee9 Trac #28373: new big bag of typos
>> 0052843038 Trac #28297: Small optimizations to arithmetic in number 
>> fields of degree > 2
>> a9f414a6f8 Trac #28057: Adding precision in computing the generators of 
>> the period lattice of an elliptic curve.
>> 40c5efa0c8 Trac #28365: Use something instead of time() to ensure 
>> Manifold uniqueness in tests
>> bd8504c9e8 Trac #28335: Cythonize Yen_k_shortest_simple_paths and 
>> feng_k_shortest_simple_paths
>> c1d5763dc3 Trac #28147: Remove _derivative from Polynomial_template
>> ef1517da96 Trac #28056: Sboxes Maintenance
>> 05bd7671a2 Trac #26098: Implement L-functions using the PARI library
>> c050128f4a Trac #20755: Bug in solve due to a bug in 
>> symbolic_expression_from_maxima_string
>> 2a4bfffc48 Trac #28353: var() with single-element list/tuple crashes with 
>> unhandled TypeError
>> 0a45dfc784 Trac #28371: py3: errors with optional package CSDP
>> 5ab84a6fb3 Trac #28369: Improve progress report in gitlab-ci
>> a8599952c3 Trac #28367: MR30: Update README.md: -py3 suffix
>> 56f7684a57 Trac #28346: Use dots instead of precision in 
>> polynomial_element
>> 8edd3f2797 Trac #28201: small cleanup of databases/cremona
>> 1b7d07b6cc Trac #27573: PRESENT Block Cipher
>> 5f22d242b6 Trac #28321: py3: rationals can not be initialized from a pair 
>> of big Python ints
>> b972100c84 Trac #24494: Deprecate set_planar_positions()
>> 42eb5103aa Trac #28364: MR29: Update faq-usage.rst
>> 047992b031 Trac #28361: Implement parameter external_face of 
>> layout_planar()
>> ae73a81a59 Trac #28343: Three.js: Support basic mesh plots
>> 7e623eddb1 Trac #28116: Cython 0.29.12
>> 7508513e65 Trac #28108: Py3: ValueError in graph_generators doctests with 
>> plantri optional package
>> a98c0ab16f Trac #28347: Add as_integer_ratio() for Integer, Rational, 
>> RealNumber, RealDoubleElement
>> 431187f776 Trac #28344: Fix some issues with submanifolds and improve 
>> their documentation
>> 7c0d719021 Trac #28342: spkg-configure.m4 for m4ri, m4rie, givaro
>> 5d6ac68f68 Trac #28228: Semistandard super tableau and standard super 
>> tableau for superRSK
>> 7d561d89cf (tag: 8.9.beta7) Updated SageMath version to 8.9.beta7
>>
>>

-- 
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/95fa41a9-4a1f-49fa-89d4-cfc931cb0792%40googlegroups.com.


[sage-release] Re: Sage 8.9.beta8 released

2019-08-26 Thread Emmanuel Charpentier
On Debian testing running on core i7 + 16 GB RAM, ptest-python3 gets three 
permanent failuresn already reported for the previous versions:

--
sage -t --long --warn-long 161.7 src/sage/graphs/strongly_regular_db.pyx  # 
4 doctests failed
sage -t --long --warn-long 161.7 
src/sage/algebras/quantum_groups/quantum_group_gap.py  # 6 doctests failed
sage -t --long --warn-long 161.7 
src/sage/rings/polynomial/polynomial_rational_flint.pyx  # 1 doctest failed
--

Details on demand (seems identica (or very close)l to what's already been 
reported, but I didn't formally check...).

HTH,


Le lundi 26 août 2019 00:37:50 UTC+2, 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 
>
> It is nearing the end of the 8.9 merge window, so if you want something 
> merged then this is your last chance.
>
> I'm inclined to name the next version 9.0. In particular, we now have 
> Python 3 support that, while not perfect, is at least usable so we should 
> mark that with a new major version. Also point-9 is a natural place to 
> switch. If you want to voice your opinion on that issue: now is the time ;-)
>
>
> 4583b4056e (tag: 8.9.beta8, trac/develop) Updated SageMath version to 
> 8.9.beta8
> 6565e63ee9 Trac #28373: new big bag of typos
> 0052843038 Trac #28297: Small optimizations to arithmetic in number fields 
> of degree > 2
> a9f414a6f8 Trac #28057: Adding precision in computing the generators of 
> the period lattice of an elliptic curve.
> 40c5efa0c8 Trac #28365: Use something instead of time() to ensure Manifold 
> uniqueness in tests
> bd8504c9e8 Trac #28335: Cythonize Yen_k_shortest_simple_paths and 
> feng_k_shortest_simple_paths
> c1d5763dc3 Trac #28147: Remove _derivative from Polynomial_template
> ef1517da96 Trac #28056: Sboxes Maintenance
> 05bd7671a2 Trac #26098: Implement L-functions using the PARI library
> c050128f4a Trac #20755: Bug in solve due to a bug in 
> symbolic_expression_from_maxima_string
> 2a4bfffc48 Trac #28353: var() with single-element list/tuple crashes with 
> unhandled TypeError
> 0a45dfc784 Trac #28371: py3: errors with optional package CSDP
> 5ab84a6fb3 Trac #28369: Improve progress report in gitlab-ci
> a8599952c3 Trac #28367: MR30: Update README.md: -py3 suffix
> 56f7684a57 Trac #28346: Use dots instead of precision in polynomial_element
> 8edd3f2797 Trac #28201: small cleanup of databases/cremona
> 1b7d07b6cc Trac #27573: PRESENT Block Cipher
> 5f22d242b6 Trac #28321: py3: rationals can not be initialized from a pair 
> of big Python ints
> b972100c84 Trac #24494: Deprecate set_planar_positions()
> 42eb5103aa Trac #28364: MR29: Update faq-usage.rst
> 047992b031 Trac #28361: Implement parameter external_face of 
> layout_planar()
> ae73a81a59 Trac #28343: Three.js: Support basic mesh plots
> 7e623eddb1 Trac #28116: Cython 0.29.12
> 7508513e65 Trac #28108: Py3: ValueError in graph_generators doctests with 
> plantri optional package
> a98c0ab16f Trac #28347: Add as_integer_ratio() for Integer, Rational, 
> RealNumber, RealDoubleElement
> 431187f776 Trac #28344: Fix some issues with submanifolds and improve 
> their documentation
> 7c0d719021 Trac #28342: spkg-configure.m4 for m4ri, m4rie, givaro
> 5d6ac68f68 Trac #28228: Semistandard super tableau and standard super 
> tableau for superRSK
> 7d561d89cf (tag: 8.9.beta7) Updated SageMath version to 8.9.beta7
>
>

-- 
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/f4583fb1-e563-44c4-963d-c2fb3b4f7239%40googlegroups.com.


[sage-release] Re: Sage 8.9.beta8 released

2019-08-26 Thread Eric Gourgoulhon
On Ubuntu 18.04 running on bi-Xeon E5-2623 (8 cores) + 16 GB RAM:


*- python2: *

  - incremental build (from 8.9.beta4, with -j16) OK 
  - all tests from ptestlong passed

- 
*python3: *

  - incremental build (from 8.9.beta4, with -j16) OK 
  - tests from ptest-python3 passed, except for 1 permanent failure in 
src/sage/rings/polynomial/polynomial_rational_flint.pyx 
this is the error tracked at https://trac.sagemath.org/ticket/28334

Eric. 

-- 
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/ae5a1464-c34f-4df1-82f8-a4e41eaf55b7%40googlegroups.com.


Re: [sage-release] Re: Sage 8.9.beta8 released

2019-08-26 Thread Vincent Delecroix

Le 26/08/2019 à 12:06, Eric Gourgoulhon a écrit :

Le lundi 26 août 2019 00:37:50 UTC+2, Volker Braun a écrit :


I'm inclined to name the next version 9.0. In particular, we now have
Python 3 support that, while not perfect, is at least usable so we should
mark that with a new major version. Also point-9 is a natural place to
switch. If you want to voice your opinion on that issue: now is the time ;-)



+1


I am fine switching to 9.0 with the meaning that it is Python 3 usable
(though there are some annoying things like #28321 that gets merged
in the last beta). If we do so I think that this release then should
come with Python 3 binaries (Isuru Fernando made it possible on conda
and Julian Rüth set up docker images).

--
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/7d2bad4a-5517-d447-3290-b681e3f02b97%40gmail.com.


[sage-release] Re: Sage 8.9.beta8 released

2019-08-26 Thread Eric Gourgoulhon
Le lundi 26 août 2019 00:37:50 UTC+2, Volker Braun a écrit :
>
> I'm inclined to name the next version 9.0. In particular, we now have 
> Python 3 support that, while not perfect, is at least usable so we should 
> mark that with a new major version. Also point-9 is a natural place to 
> switch. If you want to voice your opinion on that issue: now is the time ;-)
>

+1 

Eric. 

-- 
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/8a406894-ff4c-4386-8c30-f66cf548692c%40googlegroups.com.