[sage-devel] how to install all optional packages?

2015-05-21 Thread Sébastien Labbé
Dear sage-devel, Runing make ptestall runs all optional tests. So those tests will fail if optional packages are not installed. Is there a way to sage -i all optional packages that are used the doctests of the whole sage library in a oneliner? Should make ptestall do that before running

Re: [sage-devel] Re: upgrading and doc.

2015-05-21 Thread Frédéric Chapoton
now ticket 18464 http://trac.sagemath.org/ticket/18464 Le mardi 19 mai 2015 08:56:56 UTC+2, tdumont a écrit : Le 18/05/2015 23:03, Volker Braun a écrit : Sounds good to me... Do you have a ticket? Not yet but, I'll certainly make one... On Monday, May 18, 2015 at 10:11:20 PM

[sage-devel] Trac git interface half broken?

2015-05-21 Thread Jean-Pierre Flori
Dear all, In case the one in charge was not aware, it seems the trac git interface is half broken. For instance, http://git.sagemath.org/sage.git/diff/?id=2341c22ee7ce66cd1cf80949b1a7c9a4f6e5431f shows no diff. Best, JP -- You received this message because you are subscribed to the Google

[sage-devel] Re: [sage-notebook] Re: hosting the sage cell server

2015-05-21 Thread pang
Sorry for the late reply, but after some talks, the department of mathematics of the Universidad Autónoma de Madrid can offer a core i3, with a 256GB SSD and 30GB of RAM. -- You received this message because you are subscribed to the Google Groups sage-devel group. To unsubscribe from this

Re: [sage-devel] how to install all optional packages?

2015-05-21 Thread Vincent Delecroix
On 21/05/15 10:09, Sébastien Labbé wrote: Dear sage-devel, Runing make ptestall runs all optional tests. So those tests will fail if optional packages are not installed. Is there a way to sage -i all optional packages that are used the doctests of the whole sage library in a oneliner? It

[sage-devel] Re: trac broken (/tmp/ is full)

2015-05-21 Thread jplab
Hi, This happened to me yesterday with #18442 and a few hours later it was back and ok... JP Le jeudi 21 mai 2015 14:28:08 UTC+3, vdelecroix a écrit : Hello, Again trac does not show many tickets. Going to http://trac.sagemath.org/ticket/15456 I got Trac detected an internal

[sage-devel] trac broken (/tmp/ is full)

2015-05-21 Thread Vincent Delecroix
Hello, Again trac does not show many tickets. Going to http://trac.sagemath.org/ticket/15456 I got Trac detected an internal error: OSError: [Errno 2] No such file or directory: '/tmp/tmp_1iGR1' Vincent -- You received this message because you are subscribed to the Google Groups

[sage-devel] Re: Bug in hilbert numerator of a big ideal?

2015-05-21 Thread john_perry_usm
Hi I factored this polynomial and found out that the number: 4294967296 (which should ring a bell) is a factor of the polynomial! It didn't ring a bell for me, but factor(4294967296) enlightens me. :-) It seems that the hilbert numerator uses singular. Can that be that singular can

[sage-devel] Re: Bug in hilbert numerator of a big ideal?

2015-05-21 Thread john_perry_usm
Actually, there seems to be a convenient frobby.hilbert() function which does what you want, though I don't know if it's happy with larger coefficients. john perry On Thursday, May 21, 2015 at 3:35:23 PM UTC-5, john_perry_usm wrote: Hi I factored this polynomial and found out that the

[sage-devel] Re: Some Git errors I would like to understand.

2015-05-21 Thread Jorge Caravantes
Thanks! I'll try to solve it. El martes, 19 de mayo de 2015, 21:15:57 (UTC+2), Volker Braun escribió: The fetching failed, so either you haven't set up the trac remote (git trac config) or something is wrong with your network (e.g. firewall) On Tuesday, May 19, 2015 at 6:02:32 PM UTC+2,

Re: [sage-devel] Re: Trac error

2015-05-21 Thread Vincent Delecroix
On 21/05/15 17:18, kcrisman wrote: http://trac.sagemath.org/ticket/17018 -- Trac detected an internal error: OSError: [Errno 2] No such file or directory: '/tmp/tmpTo_W1D' I'm getting this too, basically the same error. http://trac.sagemath.org/ticket/2536 But consistently so!

[sage-devel] Re: Trac error

2015-05-21 Thread kcrisman
http://trac.sagemath.org/ticket/17018 -- Trac detected an internal error: OSError: [Errno 2] No such file or directory: '/tmp/tmpTo_W1D' I'm getting this too, basically the same error. http://trac.sagemath.org/ticket/2536 But consistently so! 253{7,8,9} work fine reproducibly. --

Re: [sage-devel] Re: Trac error

2015-05-21 Thread kcrisman
I'm getting this too, basically the same error. http://trac.sagemath.org/ticket/2536 But consistently so! 253{7,8,9} work fine reproducibly. The name of the temporary file should change each time you consult the webpage... Correct, for the ones that don't work, thanks

[sage-devel] Optional packages and old SageMath versions

2015-05-21 Thread Simon King
Hi! I have asked the following in the thread about my optional spkg, but perhaps it is better to open a new thread. Recently, there have been changes in the output format of things. For example: sage: set([1,2]) {1, 2} (which used to be displayed as set([1, 2]) ) sage: R = singular.ring()

Re: [sage-devel] Optional packages and old SageMath versions

2015-05-21 Thread Jeroen Demeyer
I vote for 4. None of the above if it's just a *test-suite* failure. If it affects the actual functioning of the package, that's a different story. -- You received this message because you are subscribed to the Google Groups sage-devel group. To unsubscribe from this group and stop

[sage-devel] Bug in hilbert numerator of a big ideal?

2015-05-21 Thread jplab
Hi everyone, I encountered a weird behavior while computing the hilbert numerator of certain Stanley-Reisner ideals http://en.wikipedia.org/wiki/Stanley%E2%80%93Reisner_ring. It is difficult to give a short, self-contained, correct example since the smallest example I can obtain that

[sage-devel] Re: Optional packages and old SageMath versions

2015-05-21 Thread Simon King
Hi Jeroen, On 2015-05-21, Jeroen Demeyer jdeme...@cage.ugent.be wrote: I vote for 4. None of the above if it's just a *test-suite* failure. If it affects the actual functioning of the package, that's a different story. It's just the test suite. In my spkg, I tried to be compatible

[sage-devel] Re: Bug in hilbert numerator of a big ideal?

2015-05-21 Thread Simon King
Hi Jean Philippe, On 2015-05-21, jplab jeanphilippela...@gmail.com wrote: It seems that the hilbert numerator uses singular. Can that be that singular can not deal with very big integers?? Or with too many variables? I wouldn't be surprised, as I have problems with computing Hilbert series

[sage-devel] Trac error

2015-05-21 Thread Jori Mäntysalo
http://trac.sagemath.org/ticket/17018 -- Trac detected an internal error: OSError: [Errno 2] No such file or directory: '/tmp/tmpTo_W1D' I think that trac error page should have an email address of it's maintainer. Compare for example to ServerAdmin at Apache configuration. -- Jori

[sage-devel] Re: [sage-notebook] Re: hosting the sage cell server

2015-05-21 Thread Andrey Novoseltsev
On Thursday, 21 May 2015 03:15:22 UTC-6, pang wrote: Sorry for the late reply, but after some talks, the department of mathematics of the Universidad Autónoma de Madrid can offer a core i3, with a 256GB SSD and 30GB of RAM. Great! The more servers we have the better for the load we can

[sage-devel] Error building pdf documentation

2015-05-21 Thread Joao Alberto de Faria
Hello everyone, I've been trying to build the pdf documentation for ticket 17282, however I keep getting the same failures: [schemes ] None:None: WARNING: citation not found: Fulton [schemes ] /home/joao/sage-dev/src/doc/en/reference/schemes/index.rst:: WARNING: unusable reference target

[sage-devel] Re: Trac error

2015-05-21 Thread Jean-Pierre Flori
Thanks. On Thursday, May 21, 2015 at 9:29:18 PM UTC+2, Eric Gourgoulhon wrote: Le jeudi 21 mai 2015 19:22:53 UTC+2, Volker Braun a écrit : fixed Thanks! Eric. -- You received this message because you are subscribed to the Google Groups sage-devel group. To unsubscribe from this

Re: [sage-devel] Error building pdf documentation

2015-05-21 Thread Justin C. Walker
On May 21, 2015, at 15:06 , Joao Alberto de Faria wrote: Hello everyone, I've been trying to build the pdf documentation for ticket 17282, however I keep getting the same failures: [schemes ] None:None: WARNING: citation not found: Fulton [schemes ]

[sage-devel] Re: [sage-notebook] Re: hosting the sage cell server

2015-05-21 Thread William Stein
On Thu, May 21, 2015 at 4:50 PM, Andrey Novoseltsev novos...@gmail.com wrote: On Thursday, 21 May 2015 03:15:22 UTC-6, pang wrote: Sorry for the late reply, but after some talks, the department of mathematics of the Universidad Autónoma de Madrid can offer a core i3, with a 256GB SSD and 30GB

[sage-devel] Minimum distance of a Hamming code

2015-05-21 Thread Rob Beezer
The code below fails on 6.7 with a RuntimeError. r = 2 C = codes.HammingCode(r, GF(2)) C.minimum_distance() For r 5 it seems to hang interminably, while back in November/December I could do r = 7 in a few seconds, and do r = 10 without waiting too long. Does anybody have any

Re: [sage-devel] Error building pdf documentation

2015-05-21 Thread Joao Alberto de Faria
thank you! that solved my issue! On Thursday, May 21, 2015 at 6:34:59 PM UTC-4, Justin C. Walker wrote: On May 21, 2015, at 15:06 , Joao Alberto de Faria wrote: Hello everyone, I've been trying to build the pdf documentation for ticket 17282, however I keep getting the same

Re: [sage-devel] hosting the sage cell server

2015-05-21 Thread Dr. David Kirkby (Kirkby Microwave Ltd)
On 14 Apr 2015 22:50, William Stein wst...@gmail.com wrote: Hi Sage Developers, Is there anybody who would be willing to host the Sage cell server? http://sagecell.sagemath.org/ I'm unable to do this, but I rather suspect that you would have zero or very few offers if the cloud software was

Re: [sage-devel] hosting the sage cell server

2015-05-21 Thread Rob Beezer
The Sage Cell is a distinct project from Sage Math Cloud. It has been open source since from inception. Try the link in the message you quoted - it is a simple but powerful idea. On Thursday, May 21, 2015 at 8:15:49 PM UTC-7, Dr. David Kirkby (Kirkby Microwave Ltd) wrote: On 14 Apr 2015

[sage-devel] Conversions to IntegerComposition poset elements

2015-05-21 Thread Rob Beezer
The following does not do what you hope, but does raise a semi-informative error: CP = Posets.IntegerCompositions(5) C = LatticePoset(CP) C([1, 1, 1, 2]) Traceback (click to the left of this block for traceback) ... TypeError: unhashable type: 'list' The following accomplishes what you

Re: [sage-devel] hosting the sage cell server

2015-05-21 Thread William Stein
On Thu, May 21, 2015 at 8:15 PM, Dr. David Kirkby (Kirkby Microwave Ltd) drkir...@kirkbymicrowave.co.uk wrote: On 14 Apr 2015 22:50, William Stein wst...@gmail.com wrote: Hi Sage Developers, Is there anybody who would be willing to host the Sage cell server? http://sagecell.sagemath.org/

[sage-devel] Re: upgrade of sage from 6.4.1 to 6.6 eclib linkage error

2015-05-21 Thread Dima Pasechnik
On Thursday, 21 May 2015 17:56:58 UTC+1, -sam- wrote: 2015. május 8., péntek 12:56:17 UTC+2 időpontban leif a következőt írta: -sam- wrote: I tried to upgrade sage from 6.4.1 to 6.6 under linuxmint 17.1 (32 bits, MATE) and I got this linkage error for the package eclib-20150323.

[sage-devel] Re: Trac error

2015-05-21 Thread Eric Gourgoulhon
Le jeudi 21 mai 2015 19:22:53 UTC+2, Volker Braun a écrit : fixed Thanks! Eric. -- 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

Re: [sage-devel] Re: Trac error

2015-05-21 Thread Dima Pasechnik
some filesystems (almost) full? On Thursday, 21 May 2015 17:28:43 UTC+1, Eric Gourgoulhon wrote: Same problem here with http://trac.sagemath.org/ticket/18100 This happened just after updating the ticket (pushing a commit); before it was OK. Eric. -- You received this message because

[sage-devel] Re: upgrade of sage from 6.4.1 to 6.6 eclib linkage error

2015-05-21 Thread -sam-
2015. május 8., péntek 12:56:17 UTC+2 időpontban leif a következőt írta: -sam- wrote: I tried to upgrade sage from 6.4.1 to 6.6 under linuxmint 17.1 (32 bits, MATE) and I got this linkage error for the package eclib-20150323. This error is unrelated to eclib; somehow FLINT got built

[sage-combinat-devel] Re: European Horizon 2020 project OpenDreamKit accepted

2015-05-21 Thread Travis Scrimshaw
Congratulations! *fireworks* -- You received this message because you are subscribed to the Google Groups sage-combinat-devel group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-combinat-devel+unsubscr...@googlegroups.com. To post to this group,

[sage-devel] Re: European Horizon 2020 project OpenDreamKit accepted

2015-05-21 Thread Travis Scrimshaw
Congratulations! *fireworks* -- 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 to this group, send email to

Re: [sage-devel] Re: Trac error

2015-05-21 Thread Eric Gourgoulhon
Same problem here with http://trac.sagemath.org/ticket/18100 This happened just after updating the ticket (pushing a commit); before it was OK. Eric. -- You received this message because you are subscribed to the Google Groups sage-devel group. To unsubscribe from this group and stop

[sage-devel] Re: Trac git interface half broken?

2015-05-21 Thread kcrisman
In case the one in charge was not aware, it seems the trac git interface is half broken. For instance, http://git.sagemath.org/sage.git/diff/?id=2341c22ee7ce66cd1cf80949b1a7c9a4f6e5431f shows no diff. I can confirm this - e.g.

[sage-devel] Re: Trac error

2015-05-21 Thread Volker Braun
fixed On Thursday, May 21, 2015 at 3:28:50 PM UTC+2, Jori Mäntysalo wrote: http://trac.sagemath.org/ticket/17018 -- Trac detected an internal error: OSError: [Errno 2] No such file or directory: '/tmp/tmpTo_W1D' I think that trac error page should have an email address of it's