[sage-devel] SageNB, publishing and error 500

2017-08-16 Thread Jori Mäntysalo
Strange little error: both publishing and stopping to publish give "500: Internal server error." Publishing works, it's just little oddity. Logfile has this line: BuildError: Could not build url for endpoint 'worksheet_publish' with values ['id', 'username']. Did you mean

Re: [sage-devel] 0 should not be a primitive root

2017-08-16 Thread Will Song
Thanks for catching my mistake it should indeed be False instead of True. On Wednesday, August 16, 2017 at 3:00:41 AM UTC-6, Daniel Krenn wrote: > > On 2017-08-14 18:37, Will Song wrote: > > Not sure if this is a known bug or not. > > > > SageMath version 8.0, Release Date: 2017-07-21 > > >

[sage-devel] Error compiling sage 8.0 from sources

2017-08-16 Thread Julius
Hi, I've got the following error compiling sage 8.0 under ubuntu 16.04. I am also including the corresponding logs. Best regards, J - Makefile:798: recipe for target 'all' failed

[sage-devel] Re: sage days 91?

2017-08-16 Thread Eric Gourgoulhon
Hi, Le mercredi 16 août 2017 11:33:39 UTC+2, Simon Brandhorst a écrit : > > Dear all, > > Ursula, Tony, and I are organizing a weekend workshop "Open Source > Computation and Algebraic Surfaces" at BIRS > https://www.birs.ca/events/2017/2-day-workshops/17w2677. > Our goal is to get some

[sage-devel] sage days 91?

2017-08-16 Thread Simon Brandhorst
Dear all, Ursula, Tony, and I are organizing a weekend workshop "Open Source Computation and Algebraic Surfaces" at BIRS https://www.birs.ca/events/2017/2-day-workshops/17w2677. Our goal is to get some functionality for point counting and indefinite lattices/quadratic forms into sage. This

Re: [sage-devel] 0 should not be a primitive root

2017-08-16 Thread Daniel Krenn
On 2017-08-14 18:37, Will Song wrote: > Not sure if this is a known bug or not. > > SageMath version 8.0, Release Date: 2017-07-21 > > sage: mod(0, 17).is_primitive_root() > True > > The easy fix would just be to add > > if self == 0: > return True > > after >