[sage-devel] Re: Unload "blocker" label

2024-02-25 Thread 'tobia...@gmx.de' via sage-devel
Just move "usage 2" to a new label. Would be more intuitive and explicit in my opinion. On Monday, February 26, 2024 at 1:25:34 PM UTC+8 Kwankyu Lee wrote: > Hi > > "blocker" label is overloaded too much. It is used for > > usage 1: PRs that should be merged to the next release > usage 2: PRs th

[sage-devel] Unload "blocker" label

2024-02-25 Thread Kwankyu Lee
Hi "blocker" label is overloaded too much. It is used for usage 1: PRs that should be merged to the next release usage 2: PRs that are merged temporarily before CI tests run usage 3: Issues that should be fixed as fast as possible I suggest the following: Use "blocker" label only for PRs and us

[sage-devel] Unload "blocker" label

2024-02-25 Thread Kwankyu Lee
Hi "blocker" label is overloaded too much. It is used for usage 1: PRs that should be merged to the next release usage 2: PRs that should be merged temporarily before CI tests run usage 3: Issues that should be fixed as fast as possible I suggest the following: Use "blocker" label only for PRs

[sage-devel] Unload "blocker" label

2024-02-25 Thread Kwankyu Lee
Hi "blocker" label is overloaded too much. It is used for usage 1: PRs that should be merged to the next PR usage 2: PRs that should be merged temporarily before CI tests run usage 3: Issues that should be fixed as fast as possible I suggest the following: Use "blocker" label only for PRs and u

[sage-devel] Release Tour for Sage 10.3 – Call for contributions

2024-02-25 Thread Matthias Koeppe
It's time to prepare the Release Tour for the upcoming release. So far we have: Sage 10.3 Release Tour - JupyterLab, Notebook 7, IPython 8.18

[sage-devel] Re: int vs long in cython

2024-02-25 Thread Nils Bruin
Hi Travis, No, these routines are about the python types. They get used as `type(x) is int` and `type(x) is long`. They are used in a different namespace from `cdef int x` and `cdef long x` and cdef long long x` (well, the `x` is in the cython object namespace. The C-types don't make it into th

Re: [sage-devel] Re: int vs long in cython

2024-02-25 Thread Dima Pasechnik
On Sun, Feb 25, 2024 at 9:48 AM Travis Scrimshaw wrote: > Sorry for the delayed response. > > If the C compiler can't tell the difference between an int and a long, > then that suggests that there is still a difference. I am not sure that > Cython has any specification that these are different. M

[sage-devel] Re: int vs long in cython

2024-02-25 Thread Travis Scrimshaw
Sorry for the delayed response. If the C compiler can't tell the difference between an int and a long, then that suggests that there is still a difference. I am not sure that Cython has any specification that these are different. My understanding is Cython treats these as C types. Can we be cer