Error: missing modules: sqlalchemy required version: 0.5rc3 detected: 0.5.5

Bug #582321 reported by Juan Simón
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Griffith
Fix Released
High
Michael

Bug Description

I have updated now my griffith with the svn version and now I can't run griffith!, the error:
Error: missing modules:
2010-05-18T17:39:55: ERROR: Griffith(griffith:51): sqlalchemy
2010-05-18T17:39:55: ERROR: Griffith(griffith:53): :: required version: 0.5rc3
2010-05-18T17:39:55: ERROR: Griffith(griffith:55): :: detected: 0.5.5

0.5rc3 > 0.5.5!!?

Please, fix this soon because I can't use this program now.

Revision history for this message
Juan Simón (simonbcn) wrote :

I forgot to say that I use Ubuntu 9.10

Revision history for this message
Juan Simón (simonbcn) wrote :

I have executed, in python console, the next function:
>>> map(int, sqlalchemy.__version__[:3].split('.'))
[0, 5]
>>> map(int, sqlalchemy.__version__[:3].split('.')) < (0, 5)
True

That comparation returns always true:
>>> map(int, sqlalchemy.__version__[:3].split('.')) < (0, 6)
True
>>> map(int, sqlalchemy.__version__[:3].split('.')) < (0, 7)
True
>>> map(int, sqlalchemy.__version__[:3].split('.')) < (1, 7)
True
>>> map(int, sqlalchemy.__version__[:3].split('.')) < (0, 0)
True
>>> map(int, sqlalchemy.__version__[:3].split('.')) < (0, 666)
True
>>> map(int, sqlalchemy.__version__[:3].split('.')) < (1222, 666)
True

Revision history for this message
Juan Simón (simonbcn) wrote :

Ok, I found it. The error is in parenthesis, the correct comparation is:
>>> map(int, sqlalchemy.__version__[:3].split('.')) < [0, 5]
False

Revision history for this message
Michael (mikej06) wrote :

Committed with revision 1423.

Changed in griffith:
assignee: nobody → Michael (mikej06)
importance: Undecided → High
milestone: none → 0.12
status: New → Fix Committed
Revision history for this message
Piotr Ożarowski (piotr) wrote :

Griffith 0.12 released

Changed in griffith:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.