|
|
2007-01-29
, 13:48
|
|
Posts: 102 |
Thanked: 16 times |
Joined on Sep 2006
@ Manchester
|
#2
|
|
|
2007-01-29
, 13:56
|
|
Posts: 72 |
Thanked: 8 times |
Joined on Jan 2007
|
#3
|
|
|
2007-01-29
, 17:38
|
|
|
Posts: 696 |
Thanked: 1,012 times |
Joined on Mar 2006
@ Asturies, Spain
|
#4
|

|
|
2007-01-29
, 17:42
|
|
|
Posts: 3,404 |
Thanked: 4,474 times |
Joined on Oct 2005
@ Germany
|
#5
|
The problem is that python packages are python2.4 or python2.5
Then if your pack an application for python2.4 it will not work with python2.5, since the packages are not compatible. You cannot put python (> =2.4) because the package python does not exist. I think that this is like that.
I suppose that applications will use python2.5, it's a question of time. But until then, we developers have an eternal dilemma
Best Regards.
|
|
2007-01-29
, 19:51
|
|
|
Posts: 772 |
Thanked: 183 times |
Joined on Jul 2005
@ Montclair, NJ (NYC suburbs)
|
#6
|
|
|
2007-01-29
, 20:31
|
|
|
Posts: 3,404 |
Thanked: 4,474 times |
Joined on Oct 2005
@ Germany
|
#7
|
|
|
2007-01-30
, 07:03
|
|
Posts: 72 |
Thanked: 8 times |
Joined on Jan 2007
|
#8
|
|
|
2007-01-30
, 14:44
|
|
|
Posts: 3,404 |
Thanked: 4,474 times |
Joined on Oct 2005
@ Germany
|
#9
|
|
|
2007-01-30
, 18:55
|
|
|
Posts: 696 |
Thanked: 1,012 times |
Joined on Mar 2006
@ Asturies, Spain
|
#10
|
I solved this issue by having my project depend on "python2.4 | python2.5". The code runs unchanged on both versions.
I thought Python was like Java in that newer runtimes could run older apps just fine. Is it just that the packages were made with a strict dependancy for "=2.4" when they should have been ">=2,4"? Or is it possible that they really do need 2.4? If that's the case, whee can I get the 2.4 runtime for Maemo?