Re: [sage-combinat-devel] Re: queue broken on 5.6 (fixed)

2013-02-22 Thread Franco Saliola
On Thu, Feb 21, 2013 at 4:10 PM, Nicolas M. Thiery nicolas.thi...@u-psud.fr
 wrote:


 Thanks to Travis, the queue now works again on 5.6!


Thanks for all your hard work, Travis.

But I'm afraid I have some bad news (followed by good news):

 sage -v
Sage Version 5.6, Release Date: 2013-01-21

 sage -combinat update
...
applying trac_12453-refactor_integer_vectors-ts.patch
patching file sage/combinat/integer_vector.py
Hunk #22 FAILED at 1254
1 out of 23 hunks FAILED -- saving rejects to file
sage/combinat/integer_vector.py.rej
patch failed, unable to continue (try -v)
patch failed, rejects left in working dir
errors during apply, please fix and refresh
trac_12453-refactor_integer_vectors-ts.patch
Abort


The good news is that things work with 5.7, so I'll stop complaining about
5.6. :-)

Franco

--

-- 
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, send email to sage-combinat-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-combinat-devel?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [sage-combinat-devel] Re: queue broken on 5.6 (fixed)

2013-02-22 Thread Travis Scrimshaw
Hey Franco,
   I noticed that this morning and fixed it (about an hour ago and it was 
an error on every version caused by me).

Best,
Travis


On Friday, February 22, 2013 10:55:03 AM UTC-5, Franco Saliola wrote:


 On Thu, Feb 21, 2013 at 4:10 PM, Nicolas M. Thiery 
 nicolas...@u-psud.frjavascript:
  wrote:


 Thanks to Travis, the queue now works again on 5.6!


 Thanks for all your hard work, Travis.

 But I'm afraid I have some bad news (followed by good news):
  
  sage -v
 Sage Version 5.6, Release Date: 2013-01-21

  sage -combinat update
 ...
 applying trac_12453-refactor_integer_vectors-ts.patch
 patching file sage/combinat/integer_vector.py
 Hunk #22 FAILED at 1254
 1 out of 23 hunks FAILED -- saving rejects to file 
 sage/combinat/integer_vector.py.rej
 patch failed, unable to continue (try -v)
 patch failed, rejects left in working dir
 errors during apply, please fix and refresh 
 trac_12453-refactor_integer_vectors-ts.patch
 Abort


 The good news is that things work with 5.7, so I'll stop complaining about 
 5.6. :-)

 Franco

 --


-- 
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, send email to sage-combinat-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-combinat-devel?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [sage-combinat-devel] Re: queue broken on 5.6 (fixed)

2013-02-22 Thread Nicolas Borie

Le 22/02/2013 16:59, Travis Scrimshaw a écrit :

Hey Franco,
   I noticed that this morning and fixed it (about an hour ago and it 
was an error on every version caused by me).



I confirm that both of you are right!!!

This is fixed! But the sage -combinat script stop when applying the 
queue (telling to rebase the int_vect_reviewpatch). Once it has 
stop, an hg qpush -a can apply all the queue... This is a strange 
behavior.


Thanks Travis for all your work (In general (queue and cleaning basic 
combinatorial objects...)).


Cheers,
Nicolas B.

--
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, send email to sage-combinat-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-combinat-devel?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [sage-combinat-devel] Re: queue broken

2012-07-17 Thread Martin
Hi Nicolas!

I opened a ticket on trac.  Unfortunately, the computer I normally email 
from just went down, so communication is slightly handicapped right now.

Also, I wanted to start with the coproduct, and thus I did a sage -combinat 
update, but the queue didn't apply.  Since for some stupid reason I have no 
copy of sage-combinat, I currently cannot work on that...
(the failing patch was combinatorial-free-module-semiring.patch, I had 
sage-5.0.rc1)

I am now building sage-5.2.beta1, hoping that the queue will apply there.

Martin

-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/sage-combinat-devel/-/n8aYrp5UGUsJ.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-07-16 Thread Nicolas M. Thiery
On Sat, Jul 14, 2012 at 10:25:16PM -0700, Anne Schilling wrote:
 I do not think there is support for symmetric functions in several alphabets 
 yet,
 but I could be wrong.

To emulate symmetric functions in two alphabets, you can take tensor products:

sage: Sym = SymmetricFunctions(QQ)
sage: Sym.inject_shorthands()
sage: ss = tensor([s, s])
sage: ss.category()
Category of tensor products of hopf algebras with basis over Rational Field

Basic arithmetic is implemented:

sage: x = ss.an_element()
s[] # s[] + 2*s[] # s[1] + 3*s[] # s[2]
sage: x * x
s[] # s[] + 4*s[] # s[1] + 4*s[] # s[1, 1] + 10*s[] # s[2] + 12*s[] # s[2, 
1] + 9*s[] # s[2, 2] + 12*s[] # s[3] + 9*s[] # s[3, 1] + 9*s[] # s[4]

Now many desirable features are missing:

sage: x.coproduct()
... NotImplemented ...
sage: pp = tensor([p,p])
sage: pp(x)
... NotImplementedError ...

Those should be implemented generically for tensor products. The first
one should be just a couple lines in:

Coalgebras.TensorProducts.ParentMethods.coproduct

The other is probably best implemented by adding an appropriate
_coerce_map_from in tensor products (I would need to search for the
best spot for this.

Plethysm (in a stupid way) should not be much more work. To be put in:

 sage.combinat.sf.sfa.SymmetricFunctionsBases.TensorProducts.ElementMethods

or something similar.

Please open a ticket and list whatever features you might want!

Cheers,
Nicolas
--
Nicolas M. Thiéry Isil nthi...@users.sf.net
http://Nicolas.Thiery.name/

-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-07-16 Thread Nicolas M. Thiery
Hi Travis,

On Sun, Jul 15, 2012 at 07:20:39AM -0700, Travis Scrimshaw wrote:
   I have a hunch as to what is going on with my patch. There's a
dependency on Nicolas's 12925 tutorial patch which has been merged into
5.2, thus it no longer appears in the patch queue. In particular it
created the combinat/tutorial.py file which my little change depends on.
My hunch is that this should work fine in 5.2.
Can someone with 5.2 test this please?

It's in the queue: trac_12925-combinatorics_thematic_tutorial-nt.patch 
#+5_2_rc0

Note: I just updated the guard; this may change something for you if
you were running a beta version of 5.2. Otherwise it should not change
anything (e.g. it should be applied on Sage = 5.1).

Cheers,
Nicolas
--
Nicolas M. Thiéry Isil nthi...@users.sf.net
http://Nicolas.Thiery.name/

-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-07-16 Thread Travis Scrimshaw
Nicolas,
   I'm apply the same guard to #6538. Let me know if there's a better 
approach to this.

With #12925 applied, #6538 applies for me. Thus the queue should work now 
(at least with respect to my patch).

Thanks,
Travis

-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/sage-combinat-devel/-/wY7vZEYNLD4J.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-07-15 Thread Martin Rubey
Anne Schilling a...@math.ucdavis.edu writes:

 Hi Martin,

 I rebased your patch. Since Mike and I touched sfa.py quite heavily during the
 past week (see also http://trac.sagemath.org/sage_trac/ticket/5457 ), there
 was a conflict, which I hope I resolved. Make sure I did not mess anything up.
 Your doctests do not pass, but most likely this was already the case before
 the rebase!

Hm, I checked them very recently...  I'll check next week.

 I do not think there is support for symmetric functions in several alphabets 
 yet,
 but I could be wrong.

OK,

Martin

-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-07-15 Thread Travis Scrimshaw
Hey,
   I have a hunch as to what is going on with my patch. There's a 
dependency on Nicolas's 12925 tutorial patch which has been merged into 
5.2, thus it no longer appears in the patch queue. In particular it created 
the combinat/tutorial.py file which my little change depends on. My hunch 
is that this should work fine in 5.2.

Can someone with 5.2 test this please?

Thanks,
Travis


On Friday, July 13, 2012 8:12:28 PM UTC+1, Mike Zabrocki wrote:

 Hi,
 We are in the last few hours of sage days and I had to disable a few 
 patches.
 I didn't figure what the cause was in these cases, only that they weren't 
 working
 for me now.
 We made changes on symmetric functions so I am sure that Martin's
 patch is failing to apply at least partly because of that.

 sf_principal_specialization-mr.patch
 trac_6538-partitions_max_slope-ts.patch 

 I don't know what is failing with Travis' patch.
 I'll try to restore them later.

 -Mike


 On Friday, 13 July 2012 09:14:47 UTC-5, Anne Schilling wrote:

 Hi Travis, 

 For me everything applies fine under sage-5.1. Which version of sage are 
 you using? 
 You should upgrade to sage-5.1 most likely! 

 Anne 

 On 7/13/12 4:23 AM, Travis Scrimshaw wrote: 
  Hey, 
 I'm also getting an error when applying 
 trac_9265_tableaux_categories_jb.patch. Is this related? 
  
  Best, 
  Travis 
  
  
  On Thursday, July 12, 2012 7:46:15 PM UTC+1, Anne Schilling wrote: 
  
  Hi! 
  
  The patch queue is currently broken with sage-5.1. 
  Nicolas claims that he fixed this before lunch, so Chris, 
  did you make changes since that break the queue? 
  
  Thanks, 
  
  Anne 
  



-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/sage-combinat-devel/-/6ulQ-dUNKpEJ.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-07-14 Thread Martin Rubey
Dear Mike,

Mike Zabrocki mike.zabro...@gmail.com writes:

 Hi,
 We are in the last few hours of sage days and I had to disable a few patches.
 I didn't figure what the cause was in these cases, only that they weren't 
 working
 for me now.
 We made changes on symmetric functions so I am sure that Martin's
 patch is failing to apply at least partly because of that.

I am not sure what to do, and honestly, right now I have difficulties to
do anything.  Could you simply adapt my patch?

Quite unrelated: is there (at least some) support for symmetric
functions in several (say, two) alphabets?  (In particular plethysm...)

Martin

-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-07-14 Thread Travis Scrimshaw
Mike,
   The only thing that has changed in trac_6538 in the past few days is to 
combinat/tutorial.py. If you figure out what's wrong, let me know. I won't 
be able to push/pull anything for sage in the next week because of the 
proxy server I'm having to use and I'll be making my way to Tokyo. Thanks.

Anne,
   I'm running on 5.0.rc0 but won't be able to reinstall combinat (b/c 
proxy server). I'll upgrade once I reach Tokyo (and I believe 5.2 is coming 
out shortly too, correct?).

Best,
Travis


On Friday, July 13, 2012 8:12:28 PM UTC+1, Mike Zabrocki wrote:

 Hi,
 We are in the last few hours of sage days and I had to disable a few 
 patches.
 I didn't figure what the cause was in these cases, only that they weren't 
 working
 for me now.
 We made changes on symmetric functions so I am sure that Martin's
 patch is failing to apply at least partly because of that.

 sf_principal_specialization-mr.patch
 trac_6538-partitions_max_slope-ts.patch 

 I don't know what is failing with Travis' patch.
 I'll try to restore them later.

 -Mike


 On Friday, 13 July 2012 09:14:47 UTC-5, Anne Schilling wrote:

 Hi Travis, 

 For me everything applies fine under sage-5.1. Which version of sage are 
 you using? 
 You should upgrade to sage-5.1 most likely! 

 Anne 

 On 7/13/12 4:23 AM, Travis Scrimshaw wrote: 
  Hey, 
 I'm also getting an error when applying 
 trac_9265_tableaux_categories_jb.patch. Is this related? 
  
  Best, 
  Travis 
  
  
  On Thursday, July 12, 2012 7:46:15 PM UTC+1, Anne Schilling wrote: 
  
  Hi! 
  
  The patch queue is currently broken with sage-5.1. 
  Nicolas claims that he fixed this before lunch, so Chris, 
  did you make changes since that break the queue? 
  
  Thanks, 
  
  Anne 
  



-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/sage-combinat-devel/-/e7RC_KirsLQJ.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-07-14 Thread Anne Schilling
Hi Martin,

I rebased your patch. Since Mike and I touched sfa.py quite heavily during the
past week (see also http://trac.sagemath.org/sage_trac/ticket/5457 ), there
was a conflict, which I hope I resolved. Make sure I did not mess anything up.
Your doctests do not pass, but most likely this was already the case before
the rebase!

I do not think there is support for symmetric functions in several alphabets 
yet,
but I could be wrong.

Cheers,

Anne

On 7/14/12 1:31 AM, Martin Rubey wrote:
 Dear Mike,
 
 Mike Zabrocki mike.zabro...@gmail.com writes:
 
 Hi,
 We are in the last few hours of sage days and I had to disable a few patches.
 I didn't figure what the cause was in these cases, only that they weren't 
 working
 for me now.
 We made changes on symmetric functions so I am sure that Martin's
 patch is failing to apply at least partly because of that.
 
 I am not sure what to do, and honestly, right now I have difficulties to
 do anything.  Could you simply adapt my patch?
 
 Quite unrelated: is there (at least some) support for symmetric
 functions in several (say, two) alphabets?  (In particular plethysm...)
 
 Martin

-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-07-14 Thread Anne Schilling
Hi Travis,

Most likely someone touched the partition file during the last week during the 
Sage Days
in a patch further down in the queue, which created the conflict. Please rebase 
your
patch (or move it higher up and contact the people with whom your patch is in 
conflict
in case yours already has a positive review).

Best,

Anne

On 7/14/12 2:18 AM, Travis Scrimshaw wrote:
 Mike,
The only thing that has changed in trac_6538 in the past few days is to 
 combinat/tutorial.py. If you figure out what's wrong, let me know. I won't be 
 able to push/pull anything for sage in the next
 week because of the proxy server I'm having to use and I'll be making my way 
 to Tokyo. Thanks.
 
 Anne,
I'm running on 5.0.rc0 but won't be able to reinstall combinat (b/c proxy 
 server). I'll upgrade once I reach Tokyo (and I believe 5.2 is coming out 
 shortly too, correct?).
 
 Best,
 Travis
 
 
 On Friday, July 13, 2012 8:12:28 PM UTC+1, Mike Zabrocki wrote:
 
 Hi,
 We are in the last few hours of sage days and I had to disable a few 
 patches.
 I didn't figure what the cause was in these cases, only that they weren't 
 working
 for me now.
 We made changes on symmetric functions so I am sure that Martin's
 patch is failing to apply at least partly because of that.
 
 sf_principal_specialization-mr.patch
 trac_6538-partitions_max_slope-ts.patch
 
 I don't know what is failing with Travis' patch.
 I'll try to restore them later.
 
 -Mike
 
 
 On Friday, 13 July 2012 09:14:47 UTC-5, Anne Schilling wrote:
 
 Hi Travis,
 
 For me everything applies fine under sage-5.1. Which version of sage 
 are you using?
 You should upgrade to sage-5.1 most likely!
 
 Anne
 
 On 7/13/12 4:23 AM, Travis Scrimshaw wrote:
  Hey,
 I'm also getting an error when applying 
 trac_9265_tableaux_categories_jb.patch. Is this related?
 
  Best,
  Travis
 
 
  On Thursday, July 12, 2012 7:46:15 PM UTC+1, Anne Schilling wrote:
 
  Hi!
 
  The patch queue is currently broken with sage-5.1.
  Nicolas claims that he fixed this before lunch, so Chris,
  did you make changes since that break the queue?
 
  Thanks,
 
  Anne

-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-07-13 Thread Anne Schilling
Hi Travis,

For me everything applies fine under sage-5.1. Which version of sage are you 
using?
You should upgrade to sage-5.1 most likely!

Anne

On 7/13/12 4:23 AM, Travis Scrimshaw wrote:
 Hey,
I'm also getting an error when applying 
 trac_9265_tableaux_categories_jb.patch. Is this related?
 
 Best,
 Travis
 
 
 On Thursday, July 12, 2012 7:46:15 PM UTC+1, Anne Schilling wrote:
 
 Hi!
 
 The patch queue is currently broken with sage-5.1.
 Nicolas claims that he fixed this before lunch, so Chris,
 did you make changes since that break the queue?
 
 Thanks,
 
 Anne
 

-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-07-13 Thread Mike Zabrocki
Hi,
We are in the last few hours of sage days and I had to disable a few 
patches.
I didn't figure what the cause was in these cases, only that they weren't 
working
for me now.
We made changes on symmetric functions so I am sure that Martin's
patch is failing to apply at least partly because of that.

sf_principal_specialization-mr.patch
trac_6538-partitions_max_slope-ts.patch 

I don't know what is failing with Travis' patch.
I'll try to restore them later.

-Mike


On Friday, 13 July 2012 09:14:47 UTC-5, Anne Schilling wrote:

 Hi Travis, 

 For me everything applies fine under sage-5.1. Which version of sage are 
 you using? 
 You should upgrade to sage-5.1 most likely! 

 Anne 

 On 7/13/12 4:23 AM, Travis Scrimshaw wrote: 
  Hey, 
 I'm also getting an error when applying 
 trac_9265_tableaux_categories_jb.patch. Is this related? 
  
  Best, 
  Travis 
  
  
  On Thursday, July 12, 2012 7:46:15 PM UTC+1, Anne Schilling wrote: 
  
  Hi! 
  
  The patch queue is currently broken with sage-5.1. 
  Nicolas claims that he fixed this before lunch, so Chris, 
  did you make changes since that break the queue? 
  
  Thanks, 
  
  Anne 
  


-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/sage-combinat-devel/-/Qiv01TbSDOQJ.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-05-15 Thread Anne Schilling
Travis,

 On Mon, May 14, 2012 at 03:05:02PM -0700, Travis Scrimshaw wrote:
First off, when I try to apply the queue, I get the following conflict:
patching file doc/en/reference/combinat/index.rst
Hunk #1 FAILED at 3
1 out of 1 hunks FAILED -- saving rejects to file
doc/en/reference/combinat/index.rst.rej
patch failed, unable to continue (try -v)
patch failed, rejects left in working dir
errors during apply, please fix and refresh
sage-demos-and-tutorials-nt.patch
So could you please address this?
 
 I could not reproduce on 5.0. Version of Sage?

I do not get this error either.

Cheers,

Anne

-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-05-15 Thread Christian Stump
Hi all --

I just see that finally (!!!) 5.0 is out:
ftp://ftp.fu-berlin.de/unix/misc/sage/devel/index.html (you might want
to choose a different mirror though). I am currently compiling it on
Ubuntu 12.04 and OSX Lion with XCode 3.2 (?). Since nothing changed
since 5.0.rc1, I would propose to make the queue apply properly here,
and drop queue support for everything before. So many things changed
and some people (Nicolas and Florent, thanks again!) spent tons of
time getting the queue applying on older versions, including
5.0.beta??'s -- I guess it is worth that everyone working on the queue
should run 5.0...

Christian

-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-05-15 Thread Anne Schilling
On 5/15/12 12:32 AM, Christian Stump wrote:
 Hi all --
 
 I just see that finally (!!!) 5.0 is out:
 ftp://ftp.fu-berlin.de/unix/misc/sage/devel/index.html (you might want
 to choose a different mirror though). I am currently compiling it on
 Ubuntu 12.04 and OSX Lion with XCode 3.2 (?). Since nothing changed
 since 5.0.rc1, I would propose to make the queue apply properly here,
 and drop queue support for everything before. So many things changed
 and some people (Nicolas and Florent, thanks again!) spent tons of
 time getting the queue applying on older versions, including
 5.0.beta??'s -- I guess it is worth that everyone working on the queue
 should run 5.0...

Yes, great idea! And thanks Nicolas and Florent for all your support on
keeping the queue running!

Best,

Anne

-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-05-15 Thread Travis Scrimshaw
Okay, then its something with 5.rc0. However its moot since the support for 
pre-5.x is dropped.

Thanks Nicolas and Florent for all your hard work!

Best,
Travis


On Tuesday, May 15, 2012 12:16:33 AM UTC-7, Anne Schilling wrote:

 Travis, 

  On Mon, May 14, 2012 at 03:05:02PM -0700, Travis Scrimshaw wrote: 
 First off, when I try to apply the queue, I get the following 
 conflict: 
 patching file doc/en/reference/combinat/index.rst 
 Hunk #1 FAILED at 3 
 1 out of 1 hunks FAILED -- saving rejects to file 
 doc/en/reference/combinat/index.rst.rej 
 patch failed, unable to continue (try -v) 
 patch failed, rejects left in working dir 
 errors during apply, please fix and refresh 
 sage-demos-and-tutorials-nt.patch 
 So could you please address this? 
  
  I could not reproduce on 5.0. Version of Sage? 

 I do not get this error either. 

 Cheers, 

 Anne 


-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/sage-combinat-devel/-/OT_BqTaAKugJ.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-05-15 Thread Anne Schilling
On 5/15/12 12:18 PM, Nicolas M. Thiery wrote:
 On Tue, May 15, 2012 at 09:41:51AM -0700, Travis Scrimshaw wrote:
Okay, then its something with 5.rc0. However its moot since the support
for pre-5.x is dropped.
 
 Don't tell the others, but I am still running rc0!

Looking at the series file, I think Travis means the problem appears after 
enabling
his patch (which is currently disabled -- that's why we did not see the 
problem).

Best,

Anne

-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2012-05-15 Thread Travis Scrimshaw
I did have my patch applied, but now it seems to work (still with rc0 and 
my patch for 6538 applied)...Maybe it was fixed in one of the pushes right 
after.  *shrugs* I don't know. In either case I no longer see the problem 
either.

Travis


On Tuesday, May 15, 2012 12:33:50 PM UTC-7, Anne Schilling wrote:

 On 5/15/12 12:18 PM, Nicolas M. Thiery wrote: 
  On Tue, May 15, 2012 at 09:41:51AM -0700, Travis Scrimshaw wrote: 
 Okay, then its something with 5.rc0. However its moot since the 
 support 
 for pre-5.x is dropped. 
  
  Don't tell the others, but I am still running rc0! 

 Looking at the series file, I think Travis means the problem appears after 
 enabling 
 his patch (which is currently disabled -- that's why we did not see the 
 problem). 

 Best, 

 Anne 


-- 
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/sage-combinat-devel/-/GlETGhE4C5YJ.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.



Re: [sage-combinat-devel] Re: queue broken

2011-01-16 Thread Anne Schilling

On 1/15/11 9:45 AM, Vincent Delecroix wrote:


Due to conflict with trac_8898 the combinat queue is currently
broken... wait few minutes before pull and push.



This conflict is resolved and should work on sage-4.6.1. But

application de trac_9065-facade_parents-nt.patch
patching file sage/categories/enumerated_sets.py
Hunk #1 FAILED at 108
Hunk #2 FAILED at 117
2 out of 2 hunks FAILED -- saving rejects to file
sage/categories/enumerated_sets.py.rej
patching file sage/categories/sets_cat.py
Hunk #2 FAILED at 198
1 out of 5 hunks FAILED -- saving rejects to file
sage/categories/sets_cat.py.rej
l'application du patch a échoué, impossible de continuer (essayez avec -v)
patch failed, rejects left in working dir
des erreurs se sont produites durant l'application, veuillez corriger
puis rafraîchir trac_9065-facade_parents-nt.patch


With sage-4.6 everything works for me. With sage-4.6.1 I get the following
problem in the queue:

...
applying trac_8388_pickling_path-vd.patch
applying trac_10155-cyclic_sieving_phenomenon-cs.patch
applying trac_10605-lazy_class_attribute-fh.patch
applying trac_9468-classcallmetaclass-classcontains-nt.patch
applying trac_9469-category-membership_without_arguments-nt.patch
applying free_module-classcall-nt.patch
patching file sage/combinat/free_module.py
Hunk #3 succeeded at 833 with fuzz 1 (offset -63 lines).
applying trac_10333-lrcalc-mh.patch
patching file module_list.py
Hunk #2 FAILED at 1620
1 out of 2 hunks FAILED -- saving rejects to file module_list.py.rej
patch failed, unable to continue (try -v)
patch failed, rejects left in working dir
errors during apply, please fix and refresh trac_10333-lrcalc-mh.patch

--
You received this message because you are subscribed to the Google Groups 
sage-combinat-devel group.
To post to this group, send email to sage-combinat-devel@googlegroups.com.
To unsubscribe from this group, send email to 
sage-combinat-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sage-combinat-devel?hl=en.