[sage-release] Re: Sage 10.0.rc3 released

2023-05-16 Thread John H Palmieri
I see the same failures on a laptop with an M2 chip.

On Tuesday, May 16, 2023 at 12:58:56 PM UTC-7 John H Palmieri wrote:

> On an iMac Pro (some Intel chip), the first failure 
> (rings/polynomial/multi_polynomial_ideal.py) is also related to giac:
>
> sage: A9=PolynomialRing(QQ,9,'x') ## line 4225 ##
> sage: I9=sage.rings.ideal.Katsura(A9) ## line 4226 ##
> sage: print("possible output from giac", flush=True); 
> I9.groebner_basis("giac",proba_epsilon=1e-7) # long time (3s) ## line 4227 
> ##
> possible output from giac
> 
> 0   signals.cpython-311-darwin.so   0x00010edc1582 
> print_backtrace + 66
> 1   signals.cpython-311-darwin.so   0x00010edc40b3 sigdie + 67
> 2   signals.cpython-311-darwin.so   0x00010edc3fa9 
> cysigs_signal_handler + 505
> 3   libsystem_platform.dylib0x7ff81a2185ed _sigtramp + 29
> 4   ??? 0x 0x0 + 0
> 5   libgiac.0.dylib 0x0001780b7e7e 
> _ZN4giac10do_zbuildMINS_8tdeg_t14EEEvRKNS_12vectzpolymodIT_EERKNSt3__16vectorIjNS7_9allocatorIjibRKNS8_INS8_IS3_NS9_IS3_NS9_ISF_RKSF_RKNS8_IiNS9_IiPvRNS8_INS_12coeffindex_tENS9_ISR_jRNS8_INS8_ItNS9_ItNS9_ISW_RNS8_ISN_NS9_ISN_RNS8_INS_14sparse_elementENS9_IS13_iii
>  
> + 334
> 6   libgiac.0.dylib 0x0001780b7d12 
> _ZN4giac8zbuildM_INS_8tdeg_t14EEEPvS2_ + 114
> 7   libsystem_pthread.dylib 0x7ff81a1eb1d3 _pthread_start 
> + 125
> 8   libsystem_pthread.dylib 0x7ff81a1e6bd3 thread_start + 
> 15
> 
> Unhandled SIGSEGV during signal handling.
> This probably occurred because a *compiled* module has a bug
> in it and is not properly wrapped with sig_on(), sig_off().
> Python will now terminate.
> ---
>
>
> The second one (giac/__init__.py) times out. The log file says
>
> Tests run before process (pid=64629) timed out:
> sage: from sage.libs.giac import groebner_basis as gb_giac # random ## 
> line 15 ##
> sage: P = PolynomialRing(QQ, 6, 'x') ## line 16 ##
> sage: I = sage.rings.ideal.Cyclic(P) ## line 17 ##
> sage: B = gb_giac(I.gens()) # random ## line 18 ##
>
>
> On Monday, May 15, 2023 at 6:05:25 PM UTC-7 Kwankyu Lee wrote:
>
>> On Tuesday, May 16, 2023 at 6:13:03 AM UTC+9 John H Palmieri wrote:
>>
>> I consistently see these failures on various OS X machines:
>>
>> sage -t --long --random-seed=244618093388694547212515065258622925284 
>> src/sage/rings/polynomial/multi_polynomial_ideal.py  # 1 doctest failed
>> sage -t --long --random-seed=244618093388694547212515065258622925284 
>> src/sage/libs/giac/__init__.py  # Timed out
>>
>> I've seen these reported after earlier releases. Is there a ticket?
>>
>>
>> For me, they pass with SageMath version 10.0.rc2. I am on macOS 12.6.5 
>> with Intel Xeon E5.  
>>
>> What is the failed doctest?
>>
>

-- 
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/cd03a808-8cda-4815-964a-eb155c47fdebn%40googlegroups.com.


[sage-release] Re: Sage 10.0.rc3 released

2023-05-16 Thread John H Palmieri
On an iMac Pro (some Intel chip), the first failure 
(rings/polynomial/multi_polynomial_ideal.py) is also related to giac:

sage: A9=PolynomialRing(QQ,9,'x') ## line 4225 ##
sage: I9=sage.rings.ideal.Katsura(A9) ## line 4226 ##
sage: print("possible output from giac", flush=True); 
I9.groebner_basis("giac",proba_epsilon=1e-7) # long time (3s) ## line 4227 
##
possible output from giac

0   signals.cpython-311-darwin.so   0x00010edc1582 print_backtrace 
+ 66
1   signals.cpython-311-darwin.so   0x00010edc40b3 sigdie + 67
2   signals.cpython-311-darwin.so   0x00010edc3fa9 
cysigs_signal_handler + 505
3   libsystem_platform.dylib0x7ff81a2185ed _sigtramp + 29
4   ??? 0x 0x0 + 0
5   libgiac.0.dylib 0x0001780b7e7e 
_ZN4giac10do_zbuildMINS_8tdeg_t14EEEvRKNS_12vectzpolymodIT_EERKNSt3__16vectorIjNS7_9allocatorIjibRKNS8_INS8_IS3_NS9_IS3_NS9_ISF_RKSF_RKNS8_IiNS9_IiPvRNS8_INS_12coeffindex_tENS9_ISR_jRNS8_INS8_ItNS9_ItNS9_ISW_RNS8_ISN_NS9_ISN_RNS8_INS_14sparse_elementENS9_IS13_iii
 
+ 334
6   libgiac.0.dylib 0x0001780b7d12 
_ZN4giac8zbuildM_INS_8tdeg_t14EEEPvS2_ + 114
7   libsystem_pthread.dylib 0x7ff81a1eb1d3 _pthread_start + 
125
8   libsystem_pthread.dylib 0x7ff81a1e6bd3 thread_start + 15

Unhandled SIGSEGV during signal handling.
This probably occurred because a *compiled* module has a bug
in it and is not properly wrapped with sig_on(), sig_off().
Python will now terminate.
---


The second one (giac/__init__.py) times out. The log file says

Tests run before process (pid=64629) timed out:
sage: from sage.libs.giac import groebner_basis as gb_giac # random ## line 
15 ##
sage: P = PolynomialRing(QQ, 6, 'x') ## line 16 ##
sage: I = sage.rings.ideal.Cyclic(P) ## line 17 ##
sage: B = gb_giac(I.gens()) # random ## line 18 ##


On Monday, May 15, 2023 at 6:05:25 PM UTC-7 Kwankyu Lee wrote:

> On Tuesday, May 16, 2023 at 6:13:03 AM UTC+9 John H Palmieri wrote:
>
> I consistently see these failures on various OS X machines:
>
> sage -t --long --random-seed=244618093388694547212515065258622925284 
> src/sage/rings/polynomial/multi_polynomial_ideal.py  # 1 doctest failed
> sage -t --long --random-seed=244618093388694547212515065258622925284 
> src/sage/libs/giac/__init__.py  # Timed out
>
> I've seen these reported after earlier releases. Is there a ticket?
>
>
> For me, they pass with SageMath version 10.0.rc2. I am on macOS 12.6.5 
> with Intel Xeon E5.  
>
> What is the failed doctest?
>

-- 
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/7c9e2a3a-aad4-4c24-9181-905835192baen%40googlegroups.com.


Re: [sage-release] Re: Sage 10.0.rc3 released

2023-05-16 Thread Kenji Iohara
I also had the same failures since several versions on Mac OS 13.3.1a with
Intel Core i5 machine.

2023年5月15日(月) 23:13 John H Palmieri :

> I consistently see these failures on various OS X machines:
>
> sage -t --long --random-seed=244618093388694547212515065258622925284
> src/sage/rings/polynomial/multi_polynomial_ideal.py  # 1 doctest failed
> sage -t --long --random-seed=244618093388694547212515065258622925284
> src/sage/libs/giac/__init__.py  # Timed out
>
> I've seen these reported after earlier releases. Is there a ticket?
>
> On Friday, May 12, 2023 at 1:40:54 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
>>
>>
>> f2f5863c08a (tag: 10.0.rc3, github/develop) Updated SageMath version to
>> 10.0.rc3
>> 937f7d915f9 gh-35625: `zeromq`: Add system package info for Arch Linux,
>> Gentoo
>> 49e5c41f33f gh-35571: update openssl to 3.0.8
>> 8aa721379a5 (tag: 10.0.rc2) Updated SageMath version to 10.0.rc2
>>
> --
> 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/e119ba38-0190-4122-bb57-a321a7f0f041n%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 
https://groups.google.com/d/msgid/sage-release/CAPCAjE07%3Dti_%2BM6BTZXfoX%3DAe8%3DTUtaT_eULvDifqVzd%3D5Pe4g%40mail.gmail.com.


[sage-release] Re: Sage 10.0.rc3 released

2023-05-15 Thread Kwankyu Lee


On Tuesday, May 16, 2023 at 6:13:03 AM UTC+9 John H Palmieri wrote:

I consistently see these failures on various OS X machines:

sage -t --long --random-seed=244618093388694547212515065258622925284 
src/sage/rings/polynomial/multi_polynomial_ideal.py  # 1 doctest failed
sage -t --long --random-seed=244618093388694547212515065258622925284 
src/sage/libs/giac/__init__.py  # Timed out

I've seen these reported after earlier releases. Is there a ticket?


For me, they pass with SageMath version 10.0.rc2. I am on macOS 12.6.5 with 
Intel Xeon E5.  

What is the failed doctest?

-- 
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/bb69b617-02fd-482d-ab02-20e4c6f7412bn%40googlegroups.com.


[sage-release] Re: Sage 10.0.rc3 released

2023-05-15 Thread John H Palmieri
I consistently see these failures on various OS X machines:

sage -t --long --random-seed=244618093388694547212515065258622925284 
src/sage/rings/polynomial/multi_polynomial_ideal.py  # 1 doctest failed
sage -t --long --random-seed=244618093388694547212515065258622925284 
src/sage/libs/giac/__init__.py  # Timed out

I've seen these reported after earlier releases. Is there a ticket?

On Friday, May 12, 2023 at 1:40:54 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
>
>
> f2f5863c08a (tag: 10.0.rc3, github/develop) Updated SageMath version to 
> 10.0.rc3
> 937f7d915f9 gh-35625: `zeromq`: Add system package info for Arch Linux, 
> Gentoo
> 49e5c41f33f gh-35571: update openssl to 3.0.8
> 8aa721379a5 (tag: 10.0.rc2) Updated SageMath version to 10.0.rc2
>

-- 
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/e119ba38-0190-4122-bb57-a321a7f0f041n%40googlegroups.com.


[sage-release] Re: Sage 10.0.rc3 released

2023-05-14 Thread Matthias Köppe
Note that  what's left in the 10.0 milestone is already 
hand-picked. https://github.com/sagemath/sage/milestone/152

In particular, could you please merge 
https://github.com/sagemath/sage/pull/35460 (the update to our developer's 
guide for GitHub -- didn't you say the transition to GitHub is marked by 
the 10.0 release?)



On Sunday, May 14, 2023 at 1:48:30 AM UTC-7 Volker Braun wrote:

> As always, only blockers are merged in release candidates. If a normal 
> ticket is not done during the normal merge window then its not going in, 
> otherwise we never finish making a release.
>
> On Saturday, May 13, 2023 at 11:54:55 PM UTC+2 matthia...@gmail.com wrote:
>
> Other relevant tickets for the 10.0 release: 
> https://github.com/sagemath/sage/milestone/152
>
>

-- 
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/132afad5-d9fd-46b1-9a74-8f58e63f8bf4n%40googlegroups.com.


Re: [sage-release] Re: Sage 10.0.rc3 released

2023-05-14 Thread Volker Braun


On Sunday, May 14, 2023 at 11:05:19 AM UTC+2 Dima Pasechnik wrote:

i.e. PRs 35637 and 35638


OK, will do.

-- 
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/d9ab590a-9d9f-46cf-b90d-15607d09ab4cn%40googlegroups.com.


Re: [sage-release] Re: Sage 10.0.rc3 released

2023-05-14 Thread Dima Pasechnik
On Sun, 14 May 2023, 09:48 Volker Braun,  wrote:

> As always, only blockers are merged in release candidates. If a normal
> ticket is not done during the normal merge window then its not going in,
> otherwise we never finish making a release.
>

Volker, can you at least merge small documentation or dependency lists only
things before the release?
i.e. PRs 35637 and 35638

Without them, we'd potentially get more bug/problems reports here - for
bugs which aren't bugs, or bugs which are fixed.
This is potentially much more work even for us, at expense of your 2
minutes or so needed to merge trivial changes.







> On Saturday, May 13, 2023 at 11:54:55 PM UTC+2 matthia...@gmail.com wrote:
>
> Other relevant tickets for the 10.0 release:
> https://github.com/sagemath/sage/milestone/152
>
> --
> 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/17850ffb-9e4f-44fb-96bf-dd9e10c3fdd3n%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 
https://groups.google.com/d/msgid/sage-release/CAAWYfq1PKqtCPQp7_Z0BQ8YSuDZ4%3DUQ9ZaD%2Bjzyp%2BVvJHZviDA%40mail.gmail.com.


[sage-release] Re: Sage 10.0.rc3 released

2023-05-14 Thread Volker Braun
As always, only blockers are merged in release candidates. If a normal 
ticket is not done during the normal merge window then its not going in, 
otherwise we never finish making a release.

On Saturday, May 13, 2023 at 11:54:55 PM UTC+2 matthia...@gmail.com wrote:

Other relevant tickets for the 10.0 release: 
https://github.com/sagemath/sage/milestone/152

-- 
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/17850ffb-9e4f-44fb-96bf-dd9e10c3fdd3n%40googlegroups.com.


[sage-release] Re: Sage 10.0.rc3 released

2023-05-13 Thread Matthias Köppe
Thanks for the new rc. Tests ran 
at https://github.com/sagemath/sage/actions/runs/4962805314

All "standard" configurations on the tested Linux platform look OK - except:
- ubuntu-kinetic-standard 
(https://github.com/sagemath/sage/actions/runs/4962805314/jobs/8884806221):
Segmentation faults in sage.libs.gap

Build errors in the "minimal" configuration on fedora-38, archlinux-latest, 
opensuse-tumbleweed are still present.
This will need the OpenBLAS update from 
https://github.com/sagemath/sage/pull/35371 (needs review).
Other relevant tickets for the 10.0 
release: https://github.com/sagemath/sage/milestone/152


On Friday, May 12, 2023 at 1:40:54 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
>
>
> f2f5863c08a (tag: 10.0.rc3, github/develop) Updated SageMath version to 
> 10.0.rc3
> 937f7d915f9 gh-35625: `zeromq`: Add system package info for Arch Linux, 
> Gentoo
> 49e5c41f33f gh-35571: update openssl to 3.0.8
> 8aa721379a5 (tag: 10.0.rc2) Updated SageMath version to 10.0.rc2
>

-- 
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/412ad748-c336-41a2-9e85-30251e4630dfn%40googlegroups.com.