[sage-devel] Re: Error building a wheel for cython-0.29.21

2021-03-24 Thread Samuel Lelievre
What commands did you run? Were you building the latest development version (Sage 9.3.rc0)? Here are the commands I would run to upgrade. Update Homebrew index, check which packages are outdated, and upgrade. ``` $ brew update $ brew outdated $ brew upgrade ``` Change to the Sage installation

[sage-devel] Re: Error building a wheel for cython-0.29.21

2021-03-24 Thread Matthias Koeppe
Which version of Sage is this? On Wednesday, March 24, 2021 at 8:52:13 PM UTC-7 la...@math.luc.edu wrote: > Hi All, > It seems I'm not the first person with this problem on macOS Big Sur. > > Side note: I had master and development branches running before the move > to python3. But it's been a

[sage-devel] Open tickets for Sage 9.3 that need attention

2021-03-24 Thread Matthias Koeppe
We have entered the release candidate stage for Sage 9.3. Help is needed with the open tickets for this milestone: There are 5 blocker tickets, 42 critical tickets, and 237 major tickets.

Re: [sage-devel] Re: Replacing %display latex with %display html

2021-03-24 Thread Eric Gourgoulhon
Le mardi 23 mars 2021 à 21:40:13 UTC+1, Eric Gourgoulhon a écrit : > Le mardi 23 mars 2021 à 19:37:33 UTC+1, Thierry (sage-googlesucks@xxx) a > écrit : > >> Hi, >> >> On Tue, Mar 23, 2021 at 11:20:05AM -0700, Eric Gourgoulhon wrote: >> > PS: IMHO, things like %display latex or %display html

[sage-devel] Re: Replacing %display latex with %display html

2021-03-24 Thread Eric Gourgoulhon
Back to the main point of this thread: I understand that %display latex has some issues (related to MathJax) in its current implementation but I would say that from the *end user* point of view, changing %display latex to %display html might not be a good thing. Indeed %display html sounds

Re: [sage-devel] Re: Doctest memory limit

2021-03-24 Thread Michael Orlitzky
On Tue, 2021-03-23 at 17:16 -0700, Volker Braun wrote: > I don't understand what the big pain point is, if Steve doesn't like the > limit it he can just pick a different value no? You can, but "make ptestlong" no longer works. And the correct number to use is not obvious. The "optional -

[sage-devel] Re: Add an external package to wiki

2021-03-24 Thread Sergey Mozgovoy
Thank you! On Wednesday, 24 March 2021 at 00:52:46 UTC Samuel Lelievre wrote: > 2021-03-23 23:14:05 UTC, Sergey: > > > > I would like to add a package > > https://github.com/smzg/msinvar > > to the list of external packages at > > https://wiki.sagemath.org/SageMathExternalPackages > > > > The

Re: [sage-devel] Re: Doctest memory limit

2021-03-24 Thread Dima Pasechnik
On Wed, Mar 24, 2021 at 9:50 AM Dima Pasechnik wrote: > > On Wed, Mar 24, 2021 at 12:16 AM Volker Braun wrote: > > > > I don't understand what the big pain point is, if Steve doesn't like the > > limit it he can just pick a different value no? > > > > We do need some way of keeping the memory

Re: [sage-devel] Re: Doctest memory limit

2021-03-24 Thread Dima Pasechnik
On Wed, Mar 24, 2021 at 12:16 AM Volker Braun wrote: > > I don't understand what the big pain point is, if Steve doesn't like the > limit it he can just pick a different value no? > > We do need some way of keeping the memory usage in check, people naturally > want to show off largeish

Re: [sage-devel] Re: Replacing %display latex with %display html

2021-03-24 Thread Eric Gourgoulhon
Sorry, the str(...) is not required since self._latex_() returns a string. So SageObject._repr_latex_ can be simplified to: def _repr_latex_(self): try: return '$' + self._latex_() + '$' except AttributeError: return None # if None is returned,

Re: [sage-devel] Re: Replacing %display latex with %display html

2021-03-24 Thread Eric Gourgoulhon
A small update: using the method _latex_ pointed out by Kwankyu, the implementation of _repr_latex_ in the class SageObject could become: def _repr_latex_(self): try: return '$' + str(self._latex_()) + '$' except AttributeError: return None # if