http://groups.google.com/group/django-users
> --
> You received this message because you are subscribed to the Google Groups "Django developers" group.
> To post to this group, send email to django-d...@googlegroups.com.
> To unsubscribe from this group, send email to django-develop...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
>
>
As you've been told - twice - on that very thread, the problem appears
to be in your own code. Django *does* support Python 2.5, and we have
the test suite to prove it:
http://ci.django-cms.org/job/Django/database=sqlite3,python=python2.5/
On the other hand, Django doesn't guarantee that *your* code runs
under Python 2.5. In this case, assuming your PYTHONPATH is set up
right, if you open up a normal python prompt and run:
>>> from base import views
You should see the same "ImportError: No module named io" error.
Remove or replace that import, and your code will run.
Yours,
Russ Magee %-)