[sage-devel] Re: trac unresponsive

2017-05-02 Thread Eric Gourgoulhon
Hi, Le mercredi 3 mai 2017 08:32:26 UTC+2, Ralf Stephan a écrit : > > I can ping trac but the main page doesn't come up. > It's OK from here (Paris). -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop recei

Re: [sage-devel] trac unresponsive

2017-05-02 Thread Thierry
Works for me. On Tue, May 02, 2017 at 11:32:26PM -0700, Ralf Stephan wrote: > I can ping trac but the main page doesn't come up. > > Please help. > > -- > You received this message because you are subscribed to the Google Groups > "sage-devel" group. > To unsubscribe from this group and stop r

[sage-devel] trac unresponsive

2017-05-02 Thread Ralf Stephan
I can ping trac but the main page doesn't come up. Please help. -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...@googlegroups.com. To post t

Re: [sage-devel] Re: More SageMath tutorials: a repository for sharing and collective authoring

2017-05-02 Thread Nicolas M. Thiery
Bonjour Dominique, On Tue, May 02, 2017 at 10:53:41AM -0700, Dominique Laurain wrote: >First : good work !! Merci :-) >I browsed randomly and only during five >minutes https://more-sagemath-tutorials.readthedocs.io/en/latest/ and >after clicking on " > * [1]Logging

[sage-devel] Re: vars() gives me an error message

2017-05-02 Thread Dima Pasechnik
this is now #22933, ready for review. Note that it's not a complete fix; sage: vars() still fails sage: v=vars() sage: for k in v.keys(): print v[k] works with the ticket branch. On Tuesday, May 2, 2017 at 9:01:42 PM UTC+1, Dima Pasechnik wrote: > > In fact, complete_sandpile has been remo

[sage-devel] Re: vars() gives me an error message

2017-05-02 Thread Dima Pasechnik
In fact, complete_sandpile has been removed, but the lazy import for it is still there. So this has to be fixed. I will open a ticket. On Tuesday, May 2, 2017 at 8:48:47 PM UTC+1, Dima Pasechnik wrote: > > no, it's more serious, perhaps something to do with lazy imports? > > sage: v=vars() > sag

[sage-devel] Re: vars() gives me an error message

2017-05-02 Thread Dima Pasechnik
no, it's more serious, perhaps something to do with lazy imports? sage: v=vars() sage: v['complete_sandpile'] ) failed: AttributeError: 'module' object has no attribute 'complete_sandpile'> (I found the value of the guilty key by running sage: for k in v.keys(): v[k]==None; until it breaks) (sa

[sage-devel] Re: K3D 3-D interactive plots in Jupyter look really good (IMHO)!...

2017-05-02 Thread aishen
HI, I am trying to make it work in sagemath and python but it failed saying no requirejs can you help because I don't understand how to install it. k3d is easy to install with pip but I didn't find any pip for requirejs regards Henri Le dimanche 28 août 2016 17:42:04 UTC+2, Jonathan a écrit : >

[sage-devel] Re: different output of latex of crystal graph on Sage 7.6 and Cloud

2017-05-02 Thread Jianping Pan
Hi Travis and Samuel, I installed graphviz and solved the problem. Thank you very much! Best, Jianping On Tuesday, May 2, 2017 at 6:57:44 AM UTC-7, Travis Scrimshaw wrote: > > Hey Jianping, >So for Sage to use dot2tex, it currently does not use the system > install, but instead it has to be

[sage-devel] Re: More SageMath tutorials: a repository for sharing and collective authoring

2017-05-02 Thread Dominique Laurain
Hello Nicolas, First : good work !! I browsed randomly and only during five minutes https://more-sagemath-tutorials.readthedocs.io/en/latest/ and after clicking on " - Logging on to a Sage Server and Creating a Worksheet

[sage-devel] Re: vars() gives me an error message

2017-05-02 Thread John H Palmieri
I think it's a (pretty?) printing problem. For me, running sage: a = vars() works without error, but then sage: a gives the error. Same thing happens with locals(). -- John On Tuesday, May 2, 2017 at 2:37:25 AM UTC-7, Dima Pasechnik wrote: > > Indeed, it appears that vars() is broken

Re: [sage-devel] Re: More SageMath tutorials: a repository for sharing and collective authoring

2017-05-02 Thread Nicolas M. Thiery
On Mon, May 01, 2017 at 08:42:29PM -0700, kcrisman wrote: > Looks awesome; :-) Will be even better with: #22931: Add missing sphinx labels to prep and other tutorials It should be a trivial review, hint, hint :-) > curating will be a lot of work. Also some outdated stuff in the > development

[sage-devel] Re: different output of latex of crystal graph on Sage 7.6 and Cloud

2017-05-02 Thread Travis Scrimshaw
Hey Jianping, So for Sage to use dot2tex, it currently does not use the system install, but instead it has to be installed in Sage by running "sage -i dot2tex". You might also need to install graphviz on your computer for the crystal graph to work. The reason why there is different output is

[sage-devel] Re: vars() gives me an error message

2017-05-02 Thread Dima Pasechnik
Indeed, it appears that vars() is broken, and has been broken since Sage 7.5, at least. Running sage: vars() ends with --- TypeError Traceback (most recent call last) in () > 1 vvv /hom