I release a stable version 0.16 that include updates from Werner
Kassens to several packages, the work Nicolas Cellier about arbitrary precision floats. All the tests are green. Hwa Jong your code is not loaded. I dunno why. Can you have a look ? Thank you. -- Serge Stinckwich UCBN & UMI UMMISCO 209 (IRD/UPMC) Help fight Ebola by joining the Computing for Ebola Challenge http://bit.ly/1oEdBag -- You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
Hwa Jong your code is not loaded. I dunno why. Can you have a look ? That is expected behavior. Currently, the ConfigurationOfSciSmalltalk >> stable: method is defining its stable version as 0.14, which is not version 0.15 where StatPseudoCollections is included. As i metioned in earlier post, i said; " I took care to put it as a development version, not to affect the stable version." meant that. It is deliberately not included in stable version to wait for team's approval. If you want to include StatPseudoCollections right away, change #stable: method '0.14' to '0.15'. I think I am the least person to do that, since I don't know much about SciSmalltalk, yet. Regards, HwaJong Oh You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
On Tue, Nov 18, 2014 at 4:32 PM, Hwa Jong Oh <[hidden email]> wrote:
> >> Hwa Jong your code is not loaded. I dunno why. Can you have a look ? > > > That is expected behavior. Currently, the ConfigurationOfSciSmalltalk >> > stable: method is defining its stable version as 0.14, which is not version > 0.15 where StatPseudoCollections is included. As i metioned in earlier post, > i said; " > I took care to put it as a development version, not to affect the stable > version." meant that. It is deliberately not included in stable version to > wait for team's approval. > > If you want to include StatPseudoCollections right away, change #stable: > method '0.14' to '0.15'. I think I am the least person to do that, since I > don't know much about SciSmalltalk, yet. I move stable to 0.16 and your code is still not loaded. Gofer new url: 'http://www.smalltalkhub.com/mc/SergeStinckwich/SciSmalltalk/main'; package: 'ConfigurationOfSciSmalltalk'; load. ((Smalltalk at: #ConfigurationOfSciSmalltalk) project version: '0.16') load. -- Serge Stinckwich UCBN & UMI UMMISCO 209 (IRD/UPMC) Help fight Ebola by joining the Computing for Ebola Challenge http://bit.ly/1oEdBag -- You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
Bad news. I've ocmpared StatPseudoCollections with other loading project but couldn't find the difference. I have no idea why this is the case. Keep looking. Regards, HwaJong Oh 2014년 11월 19일 수요일 오전 12시 37분 9초 UTC+9, Serge Stinckwich 님의 말: On Tue, Nov 18, 2014 at 4:32 PM, Hwa Jong Oh <<a href="javascript:" target="_blank" gdf-obfuscated-mailto="vrphNoOoLdsJ" onmousedown="this.href='javascript:';return true;" onclick="this.href='javascript:';return true;">dali...@...> wrote: You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
I figured it out. It is perfectly normal for current configuration.
-- When you press "Load Stable Version", following expression get evaluated. ConfigurationOfSciSmalltalk project stableVersion load. and it will load 'default' group defined in the baseline. currently, group 'default' is defined as follows: group: 'default' with: #('Core' 'Extensions' 'Tests' 'Benchmarks' 'Accuracy'); and those groups are not including StatPseudoCollections, when i changed it to: group: 'default' with: #('Core' 'Extensions' 'Tests' 'Benchmarks' 'Accuracy' 'StatPseudoCollections'); and evaluate ConfigurationOfSciSmalltalk project stableVersion load. it loads StatPseudoCollections. So, this draws a conclusion that if StatPseudoCollections is placed in some proper group, it will be loaded as default. Regards, HwaJong Oh 2014년 11월 19일 수요일 오후 5시 7분 37초 UTC+9, Hwa Jong Oh 님의 말:
You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
In reply to this post by SergeStinckwich
I figured it out. It is perfectly normal for current configuration.
-- When you press "Load Stable Version", following expression get evaluated. ConfigurationOfSciSmalltalk project stableVersion load. and it will load 'default' group defined in the baseline. currently, group 'default' is defined as follows: group: 'default' with: #('Core' 'Extensions' 'Tests' 'Benchmarks' 'Accuracy'); and those groups are not including StatPseudoCollections, when i changed it to: group: 'default' with: #('Core' 'Extensions' 'Tests' 'Benchmarks' 'Accuracy' 'StatPseudoCollections'); and evaluate ConfigurationOfSciSmalltalk project stableVersion load. it loads StatPseudoCollections. So, this draws a conclusion that if StatPseudoCollections is placed in some proper group, it will be loaded as default. Regards, HwaJong Oh 2014년 11월 19일 수요일 오전 12시 37분 9초 UTC+9, Serge Stinckwich 님의 말: On Tue, Nov 18, 2014 at 4:32 PM, Hwa Jong Oh <<a href="javascript:" target="_blank" gdf-obfuscated-mailto="vrphNoOoLdsJ" onmousedown="this.href='javascript:';return true;" onclick="this.href='javascript:';return true;">dali...@...> wrote: You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
In reply to this post by SergeStinckwich
I figured it out. It is perfectly normal for current configuration.
-- When you press "Load Stable Version", following expression get evaluated. ConfigurationOfSciSmalltalk project stableVersion load. and it will load 'default' group defined in the baseline. currently, group 'default' is defined as follows: group: 'default' with: #('Core' 'Extensions' 'Tests' 'Benchmarks' 'Accuracy'); and those groups are not including StatPseudoCollections, when i changed it to: group: 'default' with: #('Core' 'Extensions' 'Tests' 'Benchmarks' 'Accuracy' 'StatPseudoCollections'); and evaluate ConfigurationOfSciSmalltalk project stableVersion load. it loads StatPseudoCollections. So, this draws a conclusion that if StatPseudoCollections is placed in some proper group, it will be loaded as default. Regards, HwaJong Oh 2014년 11월 19일 수요일 오전 12시 37분 9초 UTC+9, Serge Stinckwich 님의 말: On Tue, Nov 18, 2014 at 4:32 PM, Hwa Jong Oh <<a href="javascript:" target="_blank" gdf-obfuscated-mailto="vrphNoOoLdsJ" onmousedown="this.href='javascript:';return true;" onclick="this.href='javascript:';return true;">dali...@...> wrote: You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
Hi Serge, Hi Oh,
-- should you want it, i can put StatPseudoCollections in the development version. then we can see how eg jenkins reacts (i dont expect difficulties), and after a while it will, more or less automatically, move over to stable anyway werner You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
+1
On Thu, Nov 20, 2014 at 1:31 PM, werner kassens <[hidden email]> wrote: > Hi Serge, Hi Oh, > should you want it, i can put StatPseudoCollections in the development > version. then we can see how eg jenkins reacts (i dont expect difficulties), > and after a while it will, more or less automatically, move over to stable > anyway > werner > > -- > You received this message because you are subscribed to the Google Groups > "SciSmalltalk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [hidden email]. > For more options, visit https://groups.google.com/d/optout. -- Serge Stinckwich UCBN & UMI UMMISCO 209 (IRD/UPMC) Help fight Ebola by joining the Computing for Ebola Challenge http://bit.ly/1oEdBag -- You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
In reply to this post by werner kassens-2
+1
2014년 11월 20일 목요일 오후 9시 31분 16초 UTC+9, werner kassens 님의 말: -- You received this message because you are subscribed to the Google Groups "SciSmalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/d/optout. |
Free forum by Nabble | Edit this page |